mirror of
https://github.com/zulip/zulip.git
synced 2025-11-15 11:22:04 +00:00
markdown-include is GPL licensed.
Also, rewrite it as a block processor, so that it works correctly
inside indented blocks.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit dc33a0ae67)
26 lines
816 B
Python
26 lines
816 B
Python
# Note that in the Markdown preprocessor registry, the highest
|
|
# numeric value is considered the highest priority, so the dict
|
|
# below is ordered from highest-to-lowest priority.
|
|
# Priorities for the built-in preprocessors are commented out.
|
|
PREPROCESSOR_PRIORITES = {
|
|
"generate_parameter_description": 535,
|
|
"generate_response_description": 531,
|
|
"generate_api_title": 531,
|
|
"generate_api_description": 530,
|
|
"generate_code_example": 525,
|
|
"generate_return_values": 510,
|
|
"generate_api_arguments": 505,
|
|
"help_relative_links": 475,
|
|
"setting": 450,
|
|
# "normalize_whitespace": 30,
|
|
"fenced_code_block": 25,
|
|
# "html_block": 20,
|
|
"tabbed_sections": -500,
|
|
"nested_code_blocks": -500,
|
|
"emoticon_translations": -505,
|
|
}
|
|
|
|
BLOCK_PROCESSOR_PRIORITIES = {
|
|
"include": 51,
|
|
}
|