You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
11
11
12
12
- GFM support
13
13
14
+
## [0.6.0] (2025-03-?)
15
+
16
+
Welcome new maintainer @[nobodywasishere](https://github.com/nobodywasishere) who brought support for gfm new features.
17
+
18
+
- Add matrix platform and Cyrstal version to github action. #[59](https://github.com/icyleaf/markd/pull/59) thanks @[devnote-dev](https://github.com/devnote-dev)
19
+
- Correct version check for Crystal::VERSION. #[60](https://github.com/icyleaf/markd/pull/60) thanks @[nobodywasishere](https://github.com/nobodywasishere)
Unfortunately, the maintainer no longer has the time and/or resources to work on markd further. This means that bugs will not be fixed and features will not be added unless someone else does so.
11
-
12
-
If you're interested in fixing up markd, please [file an issue](https://github.com/icyleaf/markd/issues/new) let me know.
13
-
14
7
<hr />
15
8
16
9
Yet another markdown parser built for speed, written in [Crystal](https://crystal-lang.org), Compliant to [CommonMark](http://spec.commonmark.org) specification (`v0.29`). Copy from [commonmark.js](https://github.com/jgm/commonmark.js).
| source_pos |`Bool`| false | if **true**, source position information for block-level elements<br />will be rendered in the data-sourcepos attribute (for HTML) |
56
49
| safe |`Bool`| false | if **true**, raw HTML will not be passed through to HTML output (it will be replaced by comments) |
57
50
| prettyprint |`Bool`| false | if **true**, code tags generated by code blocks will have a `prettyprint` class added to them, to be used by [Google code-prettify](https://github.com/google/code-prettify). |
| base_url |`URI?`| nil | if not **nil**, relative URLs of links are resolved against this `URI`. It act's like HTML's `<base href="base_url">` in the context of a Markdown document. |
61
55
62
56
## Advanced
@@ -104,13 +98,13 @@ require "markd"
104
98
105
99
formatter = Tartrazine::Html.new(
106
100
theme: Tartrazine.theme("emacs"),
107
-
101
+
108
102
# Disable print line number
109
103
line_numbers: false,
110
-
104
+
111
105
# Set standalone to false for better performace.
112
106
#
113
-
# You need generate css file use `bin/tartrazine -f html -t "emacs" --css`,
107
+
# You need generate css file use `bin/tartrazine -f html -t "emacs" --css`,
114
108
# then link it in you site.
115
109
standalone: false,
116
110
)
@@ -132,75 +126,75 @@ Currently Tartrazine supports 247 languages and [331 themes](https://github.com/
0 commit comments