Ecore Doc generator
This project allows to generate mardown doc files from an Ecore metamodel.
The generated md files are suitable for docusaurus.
Two kind of documentation are available :
- user documentation
- developer documentation.
This two documentations have different targets, and propose different views.
The doc is read from the 'documentation' tags associated to metamodel elements. Each mm documentation can have several parts (dev, user ...), allowing to have different generated docs
M2T modules structures
Packages
- common/
- Module commonly used by other packages
- Should have no dependencies to other packages
- ecore/
- Work related to ECore MM
- Should have no dependencies to other packages
- docgen/
- Common Work for doc gen.
- dependencies : ecore, common
- userdocgen/
- Modules dedicated to user doc generation
- dependencies : docgen, ecore, common
- devdocgen/
- Modules dedicated to developer doc generation
- dependencies : docgen, ecore, common