Releases: accordproject/markdown-transform
Markdown Transform v0.12.12
🐛 This is a bug fix release, addressing issues with nested (unclosed or unopened) template inline blocks. #316
Markdown Transform v0.12.11
✨ This is a patch release with some improvements to the pdf generation.
pdf 📄
- Now supports resolution of image URLs when generating pdf #334 (Contribution @martinhalford)
- Fixes issues with heading containing complex markdown #335
dependencies 🏗️
- Also upgrades to Concerto
0.82.11
model library
Markdown Transform v0.12.10
🐜 This is a patch release, adding better support and a new API for handling Concerto decorators (#249)
Markdown Transform v0.12.9
This is a general bug fix and improvements release. It also switches to a new version of the CiceroMark 0.3.1
and TemplateMark 0.1.1
models.
🏗️ Dependencies upgrades
- Now uses version
0.3.1
of the CiceroMark model, with decorators - Now uses version
0.1.1
of the TemplateMark model, with decorators and additional blocks - Now uses version
0.82.9
of concerto
💮 Concerto decorators #249
- CiceroMark and TemplateMark now include Concerto decorators on variables, clauses, etc when present. That information is propagated to the Slate DOM so it can be used to customize rendering.
🕥 AM/PM support in DateTime format #318
- Date and time format now allows
a
(respA
) which parsesam/pm
(respAM/PM
) in the markdown text. - Date and time format now allows
h
(resphh
) which parses hours in a1-12
or01-12
format in the markdown text.
🏝️ Offline mode #321
- When using the command line, you can now pass
--offline
as an option to avoid downloading external models (for template processing)
🐛 Bug fixes
Markdown Transform v0.12.6
This release includes further improvements to pdf import.
pdf import
- Pdf Import now relies on the better maintained,
pdf.js
library. Also does not add thematic breaks by default for page breaks in the source pdf.
Markdown Transform v0.12.7
This release includes bug fixes along with several improvements to the pdf support, and a new transform allowing to generate markdown with template extensions from the TemplateMark model.
New Transform
- #310 You can now generate markdown with template extensions from the TemplateMark Document Object Model in JSON format:
markus transform --from templatemark --to markdown_template --input ...
New pdf import
- The pdf import has been overhauled based on the
pdf2json
library and now detects rich text formatting in your pdf document.
Bug fixes
Markdown Transform v0.12.6
Markdown Transform v0.12.5
Markdown Transform v0.12.4
🐜 This is a patch release with some improvements to error handling, and a brand new dingus!.
TemplateMark
- Typing the TemplateMark DOM now properly returns typing errors (e.g., optional template block on an array, conditional template block on a Double, etc)
Parser
- Inconsistent variables in the contract throw proper
ParseException
errors
Dingus
- It's now ready! Use it to parse and test your templatemark (for templates), ciceromark (for contracts) or plain old commonmark (for everything else).
Markdown Transform v0.12.3
🐜 This is a patch release with some minor improvements.
TemplateMark
- #277 Fixes issues when rebuilding the parser from a template
Dingus
- Properly render
{{this}}
as a<span>
similar to variables