makeitpdf
v1.1.18
Published
A close-to-code, modular - and visual - documentation helper.
Downloads
9
Maintainers
Readme
makeitpdf
A close-to-code, modular - and visual - documentation helper.
Motivation
I wanted a better way to communicate software design.
And, it needed to be close to the code, so that it will empower developers on my team, and not slow them down or become a hassle.
The result is short & simple methodology (plus this tool), where:
Solution.md
files are kept along source code filesOuter
Solution.md
files include lower level files (components hierarchy in code is well represented in documentation this way)Developers can draw diagrams using code - which is their natural way for expressing their thoughts and design processes (using
PlantUML
)
Install
npm i -g makeitpdf
Usage
makeitpdf --source path/to/Solution.md
Short Example
Imagine a project like the following (or your own):
/my-project
/Component_One
one.ts
one.spec.ts
Solution.md
/Component_Two
two.ts
two.spec.ts
Solution.md
...
Functional_Spec.md
And Functional_Spec.md
looks like this:
# My Project
This is our amazing project.
It does really cool stuff!
[:Component One](Component_One/Solution.md)
[:Component Two](Component_Two/Solution.md)
You then render everything together using this:
makeitpdf --source Functional_Spec.md
Typically, this will be a git-hook on every
push
or something like that, uploading the resulting PDF file to your documentation system etc ...A developer working on any part of the project can easily update the documentation of the relevant component or module, hassle free
Please see the
/examples
folder for a full example of how modular your documentation can be
Features
Markdown
files can include otherMarkdown
filesPlantUML
syntax for diagrams- Auto-generated Table Of Contents
- Outputs a single
PDF
file you can easily share and automate
Nested Markdown files
You can include Markdown
in other Markdown
files using the following syntax:
## Some Foo Notes
[:Foo Placeholder](foo.md)
Notes
- This will load the contents of
foo.md
(from the current folder)- The path to "foo.md" is always relative to the current file
- Note that "Foo Placeholder" can be any name you want for the placeholder
PlantUML Diagrams
Add PlantUML
diagrams to your document with the following syntax:
## My Solution
Alice can send a message to Bob, and then Bob replies.
```plantuml
@startuml
Alice -> Bob :Hi Bob!
Bob -> Alice :Oh, Hi Alice!
@enduml
```
Notes
This will be rendered using the PlantUML public server, and added as an image in the resulting PDF file
Auto-generated Table-Of-Contents
Just add ${toc}
where you want the Table Of Contents to appear:
# My Solution
This is my amazing feature.
## Table Of Contents
${toc}
...
Tips & Tricks
Line breaks
Line breaks can really help make the final document much cleaner.
Luckily, Markdown supports HTML, so I recommend adding this at the top of each separate component (i.e. each separate markdown file):
<div style="page-break-after:always"></div>
## My component
...
GitHub Integration
At the moment, GitHub doesn't support rendering of PlantUML diagrams within a Markdown file.
As an alternative, there's this awesome Chrome / Firefox extension you can use:
- PlantUML Visualizer
Thanks @willbooster for this really great extension!
To see this in action after you installed the extension, just browser through the Markdown files in the examples folder here
VSCode
I really like seeing my documentation fully rendered when I'm working in VSCode.
To increase your productivity, I highly recommend the following extensions:
PlantUML
This extension integrates well with the built-in Markdown preview sidebar that ships by default with VSCode.
When your file includes PlantUML diagrams, they will render nicely in the preview sidebarvscode-pdf
Lets me view the final PDF file within VSCode, saves me the time to switch between a PDF viewer and VSCode.