Giter VIP home page Giter VIP logo

showdown-md2html-with-toc-generator's Introduction

showdown md2html with toc generator

Getting Started

Input Files

  • Store all the input markdown files in the folder src.
  • Conversion works recursively for all folders inside this directory.

Output Files

  • The output html files will be stored in the folder public.

HTML Template

  • Each .md file will be wrapped around a template that you specify.
  • To specify the template, modify the config/templates/file-template.html file.
  • The HTML comment <!--CONTENT--> will be replaced with the generated markdown from each file.

TOC Generation

  • The toc will be generated as the root index.html page.
  • The TOC that is generated will be based on the config/toc.json configuration.
  • The configuration format is:
{
    ".md file link": "Title"
}
  • The .md file link must be relative to the src directory with a leading slash (/) For example:
{
    "/hello.md": "Hello World",
    "/about.md": "About Me",
    "/posts/first.md": "My first post",
}
  • NOTE: If none of the .md file links are found in the generated files, that will be skipped in the toc generated index.html file.

TOC link template

  • Each link for the toc will be wrapped in the template from config/templates/partials/toc-link.html
  • <!--NAME--> represents the title of the link
  • <!--LINK--> represents the link to the html page

TOC template

  • Once the toc links are generated, the toc page will be generated using the template from config/templates/toc-template.html
  • <!--CONTENT--> will be replaced with the generated toc links.

Running the script

$ npm install
$ node convert.js

Notes

  • The src/ folder is tracked by the git index.
  • The public/ is git ignored so that it will never be commited unless forced.

showdown-md2html-with-toc-generator's People

Contributors

fabiantmc avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.