Socket
Socket
Sign inDemoInstall

spry

Package Overview
Dependencies
1
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    spry

Markdown to index.html file tool (with twitter bootstrap)


Version published
Weekly downloads
3
decreased by-40%
Maintainers
1
Install size
1.18 MB
Created
Weekly downloads
 

Readme

Source

PROJECT DUE FOR REMOVAL

Create pretty and semantic pages html pages from markdown.

'A sample page. See sample/kopimi.md'

Usage

spry is dependant on node.js.

$ git clone git@github.com@AaronAcerboni/spry.git
$ cd spry
$ npm install
$ ./spry input.md "My title"

spry takes 2 parameters. The first is file reference to the markdown file and the second is an optional html document title.

The index.html file is outputted to the output folder.

Example

test.md

# hello world

- i
- love
- [lists](http://lists.com)

node spry.js test.md "list fan"

would output the following...

output/index.html

<!doctype html> 
<html lang="en"> 
<head> 
<meta charset="utf8"> 
<title>list fan</title> 
<link rel="stylesheet" href="style.css"></head> 
<html> 
<h1>hello world</h1> 
 
<ul> 
<li>i</li> 
<li>love</li> 
<li><a href="http://lists.com">lists</a></li> 
</ul> 
</html>

kopimi

FAQs

Last updated on 18 Aug 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc