[go: up one dir, main page]

Skip to content
/ h2md Public
forked from ah01/h2md

C/C++ Header to Markdown converter (h2md)

License

Notifications You must be signed in to change notification settings

jnthas/h2md

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C/C++ Header to Markdown converter (h2md)

Small utility for generating markdown file from block comments in C/C++ source code.

library.h  →  [h2md]  →  documentation.md

Basic idea is that you already have markdown text in block comment of your code and you want to take them into separate file.

This tool is far away from doxygen or other proper documentation generators. I want small tool for documenting trivial Arduino library. I realize that I unintentionally already writing markdown into comments. So, I need to just take them out…

Examples

Usage

Get application. Requires node.js and npm to be installed on computer.

git clone https://github.com/ah01/h2md.git && cd h2md
npm install

Run it

node h2md -p cpp -o documentation.md library.h

Theory of operation

h2md works in 3 steps:

  1. Take block comment (beginning with /**) from file plus one following line of code.
  2. Apply patterns to block according to that one line of code (if not empty). Patterns are in libs.
  3. Go block by block and
    • If code line is empty, just put content of block to output file.
    • If code line is not empty, make md header from it and then put content of block.

About

C/C++ Header to Markdown converter (h2md)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%