2021-09-17 19:01:36 +02:00
|
|
|
# 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.
|
2021-09-23 11:29:14 +02:00
|
|
|
# Priorities for the built-in preprocessors are commented out.
|
2021-09-17 19:01:36 +02:00
|
|
|
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,
|
2021-09-20 14:46:46 +02:00
|
|
|
"help_relative_links": 475,
|
|
|
|
"setting": 450,
|
2021-09-23 11:29:14 +02:00
|
|
|
# "normalize_whitespace": 30,
|
2021-09-17 19:01:36 +02:00
|
|
|
"fenced_code_block": 25,
|
2021-09-23 11:29:14 +02:00
|
|
|
# "html_block": 20,
|
2021-09-17 19:01:36 +02:00
|
|
|
"tabbed_sections": -500,
|
|
|
|
"nested_code_blocks": -500,
|
|
|
|
"emoticon_translations": -505,
|
|
|
|
}
|
2022-06-26 02:38:55 +02:00
|
|
|
|
|
|
|
BLOCK_PROCESSOR_PRIORITIES = {
|
|
|
|
"include": 51,
|
|
|
|
}
|