8.0
8.0
Please see Release Notes for details on upgrading to 8.0.
- NEW: Added SaneHeaders extension.
- NEW: SuperFences & InlineHilite: gracefully handle failing custom formatters and/or validators. Users should add their own debug code to their formatter/validator if they suspect it isn't working.
- NEW: SuperFences: if a custom fence validator fails, try the next custom fence until all are exhausted.
- NEW: SuperFences: no longer allow custom options in the form
key=(no value). Only keys with values or keys with no value and no=are accepted. Keys with no value will now assume the value to be the key name. - NEW: SuperFences: if
attr_listextension is enabled, fenced code that use brace attribute list style headers (```{lang #id .class attr=value}) will attach arbitrary attributes that are included in the header to the code element. - NEW: SuperFences: when Pygments is disabled, options (such as
linenums) included in fenced code headers no longer do anything. Ifattr_listis enabled, and the brace header is used, such options will be treated as HTML attributes. JavaScript highlighter options should be defined in the brace header form withattr_listenabled in order to generate appropriate, compatible HTML with the chosen JavaScript highlighter. - NEW: SuperFences: backwards incompatible changes where made to custom fence API. See Release Notes for instructions on how to migrate to the new API. Some temporary support for most of the old format is in place, but is deprecated.
- NEW: SuperFences: has removed legacy code tab feature. Associated
legacy_tab_classesoption has been removed. Please use the Tabbed extension to create general purpose tabs for code blocks or other content. - NEW: Highlight: add new option
language_prefixwhich controls the prefix applied to language classes when Pygments is not being used. - NEW: Highlight: A new option called
code_attr_on_prewas added to the Highlight extension and controls whether language classes, and any ids, attributes, and classes that are defined in fenced code attribute list style headers, are attached to the code element or pre element. This has effect when using Pygments. - NEW: Highlight: option
linenumsnow defaults toNoneand acceptsNone,True, orFalse.Noneis disabled by default, but can be enabled per code block.Trueenables line numbers globally.Falsedisables globally and cannot be enabled manually per code block. - NEW: ExtraRawHTML: remove extension.
- FIX: Fix issues with complex emphasis combinations in BetterEm.
- FIX: Details: fix corner cases related to extension and lists.
- FIX: Tabbed: fix corner cases related to extension and lists.
- FIX: EscapeAll: Handle HTML entities special.
- FIX: SuperFences: Fix parameter unpacking bug.