| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
* T.P.Format: export `formatFromFilePaths` [API change]
* Lua: add function `pandoc.format.from_path`
* Update lua-filters.md
* The old T.P.App.FormatHeuristics module has been removed.
This is an alternative to #8693.
|
|
|
|
|
|
|
|
This simplifies the creation of custom readers and writers that are
based on built-in formats.
|
|
|
|
|
|
Custom writers can define the extensions that they support via the
global `writer_extensions`. The variable's value must be a table with
all supported extensions as keys, and their default status as values.
E.g., the below specifies that the writer support the extensions `smart`
and `sourcepos`, but only the `smart` extension is enabled by default:
writer_extensions = {
smart = true,
sourcepos = false,
}
|
|
Ensures a cleaner module dependency graph.
|
|
The module provides functions to query the set of extensions supported
by formats, and the set of extension enabled per default.
|