Swifty powered πMarkdown Documentation generator. If your team need easy way to maintain and create documentation, this generator is for you.
Simple markdown documentation generator, never again -> git conflicts among the team members which are updating documentation at the same time π₯
We all know that in big teams we have a lot of agreements, which needs to be stored somewhere (for newcomers and also for current developers), this script will help you to do this, create your SwiftStyleGuide.md, ArchitectureDescription.md etc. documentation in easy to maintain way π
Therefore, creating of documentation for your project, should not limit you at all! Maintaining and editing documentation needs to be easy as it is possible, also we should minimalise situation when multiple team members are manually editing main documentation file, it leads us only towards problems (git conflicts), and in result slow us down π©.
This script is intended to be very easy to use and reduce as much as possible git conflicts among the team members interaction with documentation.
To do so, you need to create your own doc_shape.txt
(see and play with Example folder).
Follow convention explained below:
doc_shape.txt
example:
i || General || general.md
i || Architecture || architecture_config.md
ii || Our Approach || our_approach.md
i || CI and Rest || ci_and_rest.md
i || Summary || summary.md
NOTE You can skip subject content file source name in doc_shape.txt
file, in result you will get only subject without content in the output file e.g.:
i || General ||
If in current directory you have not created source .md file for each subject defined in doc_shape.txt
, script will do it for you after first run.
In the shape example which we see above, it will be e.g. file with the general.md
name for βGeneralβ subject. Base on mentioned general.md
file, script will create documentation body.
Run script using terminal in the directory of previously defined files (doc_shape.txt
and content subjects .md files).
$ SkrybaMD generate MySuperDocumentation
- if you have installed SkrybaMD globally π
or
$ ./SkrybaMD generate MySuperDocumentation
- if you have SkrybaMD script in the current directory π
You will find markdown generated MySuperDocumentation.md
file in the same directory π₯
Skryba by default is taking the same directory for creating output file as doc_shape.txt
has, but you can specify your own path for the outpuf using output --path <path>
option (see --help
for more info).
$ SkrybaMD output --path ./Documentations/MySuperDocumentation
ENJOY π
NOTE: you can play around with script using βExampleβ folder from this repository
If you are not sure how to use it, go and hit --help
to get verbose instructions
$ SkrybaMD --help
$ brew install robertherdzik/homebrew-SkrybaMD/SkrybaMD
$ git clone https://github.com/robertherdzik/SkrybaMD.git
$ cd SkrybaMD
$ make install
If you have any idea how to improve the project, feel free to do it πβ€οΈ