- Implemented `report.nim` to create structured reports on metadata modifications. - Added functionality to merge reports and convert them to formatted strings. docs: Create prompt documentation for Markdown parser project - Added `prompt.md` detailing the requirements and functionalities for the Markdown parser. - Included specifications, usage examples, and testing guidelines. docs: Generate code review report for Markdown parser - Created `rapport_revue_code.md` outlining security vulnerabilities, code quality issues, and suggested improvements. - Provided a detailed analysis of the codebase with actionable recommendations. test: Add test data for Markdown parser - Included various Markdown files and a JPG image in `test_data` to simulate different scenarios. - Ensured that the parser can handle both valid and invalid metadata. chore: Add version management file - Created `version.nim` for automatic versioning of the Markdown parser. - Established constants for major, minor, patch, and build versions.
11 lines
387 B
Nim
11 lines
387 B
Nim
# version.nim
|
|
# Fichier de gestion de version automatique pour le parser Markdown
|
|
# Dernière mise à jour: 2025-03-17 14:16:12
|
|
|
|
const
|
|
VERSION_MAJOR* = 1
|
|
VERSION_MINOR* = 0
|
|
VERSION_PATCH* = 0
|
|
VERSION_BUILD* = 97 # Sera incrémenté automatiquement par le script de build
|
|
|
|
VERSION_STRING* = $VERSION_MAJOR & "." & $VERSION_MINOR & "." & $VERSION_PATCH & "." & $VERSION_BUILD |