djot 0.1.2.2 → 0.1.2.3
raw patch · 4 files changed
+26/−2 lines, 4 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Djot.AST: type Blocks = Many (Node Block)
+ Djot.AST: type Blocks = Many Node Block
- Djot.AST: type Inlines = Many (Node Inline)
+ Djot.AST: type Inlines = Many Node Inline
Files
- CHANGELOG.md +4/−0
- djot.cabal +5/−1
- src/Djot/Blocks.hs +0/−1
- test/regression.test +17/−0
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for djot +## 0.1.2.3 -- 2025-09-27++* Fix swallowing of indentation in code under blockquote (#11).+ ## 0.1.2.2 -- 2024-10-04 * Allow list items with blank lines between divs (#10).
djot.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: djot-version: 0.1.2.2+version: 0.1.2.3 synopsis: Parser and renderer for djot light markup syntax. description: Djot (<https://djot.net>) is a light markup language. This package provides a data structure to represent@@ -16,6 +16,10 @@ extra-doc-files: CHANGELOG.md extra-source-files: test/*.test benchmark/m.dj++Source-repository head+ type: git+ location: https://github.com/jgm/djoths.git common deps build-depends:
src/Djot/Blocks.hs view
@@ -438,7 +438,6 @@ skipMany spaceOrTab asciiChar '>' followedByWhitespace- skipMany spaceOrTab pure True , blockContainsBlock = Just Normal , blockContainsLines = False
test/regression.test view
@@ -190,3 +190,20 @@ </li> </ol> ```++Issue #11:++```+> ```js+> {+> "A": 1+> }+> ```+.+<blockquote>+<pre><code class="language-js">{+ "A": 1+}+</code></pre>+</blockquote>+```