Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,18 @@ Options:
Enable GitHub-flavored markdown extensions: strikethrough, tagfilter, table, autolink, and
tasklist. Also enables --github-pre-lang

--relaxed-tasklist-character
Enable relaxing which character is allowed in a tasklists

--default-info-string <INFO>
Default value for fenced code block's info strings if none is given

--unsafe
Allow raw HTML and dangerous URLs

--gemojis
Translate gemojis into UTF-8 characters

--escape
Escape raw HTML instead of clobbering it

Expand Down Expand Up @@ -209,6 +215,7 @@ Comrak additionally supports its own extensions, which are yet to be specced out
- Footnotes
- Description lists
- Front matter
- Shortcodes

By default none are enabled; they are individually enabled with each parse by setting the appropriate values in the
[`ComrakOptions` struct](https://docs.rs/comrak/newest/comrak/struct.ComrakOptions.html).
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ struct Cli {
#[arg(long = "unsafe")]
unsafe_: bool,

/// Translate gemojis into UTF8 characters
/// Translate gemojis into UTF-8 characters
#[arg(long)]
gemojis: bool,

Expand Down