├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── README.md ├── mau ├── __init__.py ├── environment │ ├── __init__.py │ └── environment.py ├── errors.py ├── helpers.py ├── lexers │ ├── __init__.py │ ├── arguments_lexer.py │ ├── base_lexer.py │ ├── main_lexer.py │ ├── preprocess_variables_lexer.py │ └── text_lexer.py ├── main.py ├── nodes │ ├── __init__.py │ ├── arguments.py │ ├── block.py │ ├── content.py │ ├── footnotes.py │ ├── header.py │ ├── inline.py │ ├── lists.py │ ├── macros.py │ ├── nodes.py │ ├── page.py │ ├── paragraph.py │ ├── source.py │ └── toc.py ├── parsers │ ├── __init__.py │ ├── arguments.py │ ├── arguments_parser.py │ ├── attributes.py │ ├── base_parser.py │ ├── footnotes.py │ ├── internal_links.py │ ├── main_parser.py │ ├── preprocess_variables_parser.py │ ├── text_parser.py │ └── toc.py ├── test_helpers.py ├── text_buffer │ ├── __init__.py │ ├── context.py │ └── text_buffer.py ├── tokens │ ├── __init__.py │ └── tokens.py └── visitors │ ├── __init__.py │ ├── base_visitor.py │ └── jinja_visitor.py ├── noxfile.py ├── pyproject.toml ├── requirements.txt ├── requirements ├── development.txt ├── production.txt └── testing.txt └── tests ├── __init__.py ├── e2e ├── __init__.py ├── expected │ ├── block │ │ ├── block_admonition.yaml │ │ ├── block_conditionals.yaml │ │ ├── block_quote.yaml │ │ ├── block_simple.yaml │ │ └── block_title.yaml │ ├── commands │ │ ├── footnotes.yaml │ │ ├── footnotes_advanced.yaml │ │ ├── references.yaml │ │ ├── toc.yaml │ │ └── toc_advanced.yaml │ ├── inline │ │ ├── classes.yaml │ │ ├── conditionals.yaml │ │ ├── inline_image.yaml │ │ ├── internal_link.yaml │ │ ├── link.yaml │ │ ├── mailto.yaml │ │ ├── multiple_paragraphs.yaml │ │ ├── single_paragraph.yaml │ │ ├── split_paragraph.yaml │ │ ├── styles.yaml │ │ ├── styles_mixed.yaml │ │ └── verbatim.yaml │ ├── other │ │ ├── directives.yaml │ │ ├── variable_advanced.yaml │ │ └── variable_simple.yaml │ ├── page │ │ ├── comments.yaml │ │ ├── header_multiple.yaml │ │ ├── header_single.yaml │ │ ├── header_with_paragraphs.yaml │ │ ├── horizontal_line.yaml │ │ ├── image.yaml │ │ ├── list_ordered.yaml │ │ ├── list_start.yaml │ │ └── list_unordered.yaml │ └── source │ │ ├── source_callouts.yaml │ │ ├── source_highlight.yaml │ │ └── source_simple.yaml ├── source │ ├── block │ │ ├── block_admonition.mau │ │ ├── block_conditionals.mau │ │ ├── block_quote.mau │ │ ├── block_simple.mau │ │ └── block_title.mau │ ├── commands │ │ ├── footnotes.mau │ │ ├── footnotes_advanced.mau │ │ ├── toc.mau │ │ └── toc_advanced.mau │ ├── inline │ │ ├── classes.mau │ │ ├── conditionals.mau │ │ ├── inline_image.mau │ │ ├── internal_link.mau │ │ ├── link.mau │ │ ├── mailto.mau │ │ ├── multiple_paragraphs.mau │ │ ├── single_paragraph.mau │ │ ├── split_paragraph.mau │ │ ├── styles.mau │ │ ├── styles_mixed.mau │ │ └── verbatim.mau │ ├── other │ │ ├── directives.mau │ │ ├── include_text.txt │ │ ├── variable_advanced.mau │ │ └── variable_simple.mau │ ├── page │ │ ├── comments.mau │ │ ├── header_multiple.mau │ │ ├── header_single.mau │ │ ├── header_with_paragraphs.mau │ │ ├── horizontal_line.mau │ │ ├── image.mau │ │ ├── list_ordered.mau │ │ ├── list_start.mau │ │ └── list_unordered.mau │ └── source │ │ ├── source_callouts.mau │ │ ├── source_highlight.mau │ │ └── source_simple.mau └── test_e2e.py ├── environment └── test_environment.py ├── helpers.py ├── lexers ├── __init__.py ├── data_file_lexer.txt ├── test_arguments_lexer.py ├── test_base_lexer.py ├── test_main_lexer.py ├── test_preprocess_variables_lexer.py └── test_text_lexer.py ├── nodes ├── __init__.py ├── test_arguments.py ├── test_block.py ├── test_content.py ├── test_footnotes.py ├── test_header.py ├── test_inline.py ├── test_lists.py ├── test_macros.py ├── test_nodes.py ├── test_page.py ├── test_paragraph.py ├── test_references.py ├── test_source.py └── test_toc.py ├── parsers ├── __init__.py ├── main_parser │ ├── __init__.py │ ├── test_arguments.py │ ├── test_block_attributes.py │ ├── test_block_basic.py │ ├── test_block_engine_group.py │ ├── test_block_engine_mau.py │ ├── test_block_engine_raw.py │ ├── test_block_other.py │ ├── test_block_source.py │ ├── test_content.py │ ├── test_control.py │ ├── test_footnotes.py │ ├── test_headers.py │ ├── test_horizontal_rule.py │ ├── test_internal_links.py │ ├── test_lists.py │ ├── test_main_parser.py │ ├── test_paragraph.py │ ├── test_parent.py │ ├── test_source.py │ ├── test_title.py │ ├── test_toc.py │ └── test_variables.py ├── test_arguments_parser.py ├── test_base_parser.py ├── test_create_toc.py ├── test_preprocess_variables_parser.py └── text_parser │ ├── __init__.py │ ├── macros │ ├── __init__.py │ ├── test_arguments.py │ ├── test_class.py │ ├── test_control.py │ ├── test_footnote.py │ ├── test_generic_macro.py │ ├── test_header.py │ ├── test_image.py │ └── test_link.py │ ├── test_basic_text.py │ ├── test_escaped.py │ ├── test_style.py │ └── test_verbatim.py ├── text_buffer ├── __init__.py ├── test_context.py └── test_text_buffer.py ├── tokens ├── __init__.py └── test_tokens.py └── visitors ├── __init__.py ├── base_visitor ├── __init__.py ├── test_block.py ├── test_content.py ├── test_footnotes.py ├── test_header.py ├── test_inline.py ├── test_lists.py ├── test_page.py ├── test_paragraph.py ├── test_source.py └── test_toc.py └── jinja_visitor ├── test_block.py ├── test_content.py ├── test_footnotes.py ├── test_header.py ├── test_inline.py ├── test_lists.py ├── test_page.py ├── test_paragraph.py ├── test_source.py ├── test_templates.py └── toc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/README.md -------------------------------------------------------------------------------- /mau/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/__init__.py -------------------------------------------------------------------------------- /mau/environment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mau/environment/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/environment/environment.py -------------------------------------------------------------------------------- /mau/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/errors.py -------------------------------------------------------------------------------- /mau/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/helpers.py -------------------------------------------------------------------------------- /mau/lexers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mau/lexers/arguments_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/lexers/arguments_lexer.py -------------------------------------------------------------------------------- /mau/lexers/base_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/lexers/base_lexer.py -------------------------------------------------------------------------------- /mau/lexers/main_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/lexers/main_lexer.py -------------------------------------------------------------------------------- /mau/lexers/preprocess_variables_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/lexers/preprocess_variables_lexer.py -------------------------------------------------------------------------------- /mau/lexers/text_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/lexers/text_lexer.py -------------------------------------------------------------------------------- /mau/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/main.py -------------------------------------------------------------------------------- /mau/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mau/nodes/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/arguments.py -------------------------------------------------------------------------------- /mau/nodes/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/block.py -------------------------------------------------------------------------------- /mau/nodes/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/content.py -------------------------------------------------------------------------------- /mau/nodes/footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/footnotes.py -------------------------------------------------------------------------------- /mau/nodes/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/header.py -------------------------------------------------------------------------------- /mau/nodes/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/inline.py -------------------------------------------------------------------------------- /mau/nodes/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/lists.py -------------------------------------------------------------------------------- /mau/nodes/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/macros.py -------------------------------------------------------------------------------- /mau/nodes/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/nodes.py -------------------------------------------------------------------------------- /mau/nodes/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/page.py -------------------------------------------------------------------------------- /mau/nodes/paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/paragraph.py -------------------------------------------------------------------------------- /mau/nodes/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/source.py -------------------------------------------------------------------------------- /mau/nodes/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/nodes/toc.py -------------------------------------------------------------------------------- /mau/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mau/parsers/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/arguments.py -------------------------------------------------------------------------------- /mau/parsers/arguments_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/arguments_parser.py -------------------------------------------------------------------------------- /mau/parsers/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/attributes.py -------------------------------------------------------------------------------- /mau/parsers/base_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/base_parser.py -------------------------------------------------------------------------------- /mau/parsers/footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/footnotes.py -------------------------------------------------------------------------------- /mau/parsers/internal_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/internal_links.py -------------------------------------------------------------------------------- /mau/parsers/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/main_parser.py -------------------------------------------------------------------------------- /mau/parsers/preprocess_variables_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/preprocess_variables_parser.py -------------------------------------------------------------------------------- /mau/parsers/text_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/text_parser.py -------------------------------------------------------------------------------- /mau/parsers/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/parsers/toc.py -------------------------------------------------------------------------------- /mau/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/test_helpers.py -------------------------------------------------------------------------------- /mau/text_buffer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mau/text_buffer/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/text_buffer/context.py -------------------------------------------------------------------------------- /mau/text_buffer/text_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/text_buffer/text_buffer.py -------------------------------------------------------------------------------- /mau/tokens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mau/tokens/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/tokens/tokens.py -------------------------------------------------------------------------------- /mau/visitors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mau/visitors/base_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/visitors/base_visitor.py -------------------------------------------------------------------------------- /mau/visitors/jinja_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/mau/visitors/jinja_visitor.py -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/production.txt 2 | -------------------------------------------------------------------------------- /requirements/development.txt: -------------------------------------------------------------------------------- 1 | .[development] 2 | -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /requirements/testing.txt: -------------------------------------------------------------------------------- 1 | .[testing] 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e/expected/block/block_admonition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/block/block_admonition.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/block/block_conditionals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/block/block_conditionals.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/block/block_quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/block/block_quote.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/block/block_simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/block/block_simple.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/block/block_title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/block/block_title.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/commands/footnotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/commands/footnotes.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/commands/footnotes_advanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/commands/footnotes_advanced.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/commands/references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/commands/references.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/commands/toc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/commands/toc.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/commands/toc_advanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/commands/toc_advanced.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/classes.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/conditionals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/conditionals.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/inline_image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/inline_image.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/internal_link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/internal_link.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/link.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/mailto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/mailto.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/multiple_paragraphs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/multiple_paragraphs.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/single_paragraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/single_paragraph.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/split_paragraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/split_paragraph.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/styles.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/styles_mixed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/styles_mixed.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/inline/verbatim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/inline/verbatim.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/other/directives.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/other/directives.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/other/variable_advanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/other/variable_advanced.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/other/variable_simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/other/variable_simple.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/page/comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/page/comments.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/page/header_multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/page/header_multiple.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/page/header_single.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/page/header_single.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/page/header_with_paragraphs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/page/header_with_paragraphs.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/page/horizontal_line.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/page/horizontal_line.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/page/image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/page/image.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/page/list_ordered.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/page/list_ordered.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/page/list_start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/page/list_start.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/page/list_unordered.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/page/list_unordered.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/source/source_callouts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/source/source_callouts.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/source/source_highlight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/source/source_highlight.yaml -------------------------------------------------------------------------------- /tests/e2e/expected/source/source_simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/expected/source/source_simple.yaml -------------------------------------------------------------------------------- /tests/e2e/source/block/block_admonition.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/block/block_admonition.mau -------------------------------------------------------------------------------- /tests/e2e/source/block/block_conditionals.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/block/block_conditionals.mau -------------------------------------------------------------------------------- /tests/e2e/source/block/block_quote.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/block/block_quote.mau -------------------------------------------------------------------------------- /tests/e2e/source/block/block_simple.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/block/block_simple.mau -------------------------------------------------------------------------------- /tests/e2e/source/block/block_title.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/block/block_title.mau -------------------------------------------------------------------------------- /tests/e2e/source/commands/footnotes.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/commands/footnotes.mau -------------------------------------------------------------------------------- /tests/e2e/source/commands/footnotes_advanced.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/commands/footnotes_advanced.mau -------------------------------------------------------------------------------- /tests/e2e/source/commands/toc.mau: -------------------------------------------------------------------------------- 1 | = Test ToC 2 | 3 | ::toc: 4 | 5 | -------------------------------------------------------------------------------- /tests/e2e/source/commands/toc_advanced.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/commands/toc_advanced.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/classes.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/classes.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/conditionals.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/conditionals.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/inline_image.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/inline_image.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/internal_link.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/internal_link.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/link.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/link.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/mailto.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/mailto.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/multiple_paragraphs.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/multiple_paragraphs.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/single_paragraph.mau: -------------------------------------------------------------------------------- 1 | This document contains a single paragraph. 2 | -------------------------------------------------------------------------------- /tests/e2e/source/inline/split_paragraph.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/split_paragraph.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/styles.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/styles.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/styles_mixed.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/inline/styles_mixed.mau -------------------------------------------------------------------------------- /tests/e2e/source/inline/verbatim.mau: -------------------------------------------------------------------------------- 1 | This paragraph contains `verbatim` text. 2 | -------------------------------------------------------------------------------- /tests/e2e/source/other/directives.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/other/directives.mau -------------------------------------------------------------------------------- /tests/e2e/source/other/include_text.txt: -------------------------------------------------------------------------------- 1 | This text has been included through a directive 2 | -------------------------------------------------------------------------------- /tests/e2e/source/other/variable_advanced.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/other/variable_advanced.mau -------------------------------------------------------------------------------- /tests/e2e/source/other/variable_simple.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/other/variable_simple.mau -------------------------------------------------------------------------------- /tests/e2e/source/page/comments.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/page/comments.mau -------------------------------------------------------------------------------- /tests/e2e/source/page/header_multiple.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/page/header_multiple.mau -------------------------------------------------------------------------------- /tests/e2e/source/page/header_single.mau: -------------------------------------------------------------------------------- 1 | = Header 1 2 | -------------------------------------------------------------------------------- /tests/e2e/source/page/header_with_paragraphs.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/page/header_with_paragraphs.mau -------------------------------------------------------------------------------- /tests/e2e/source/page/horizontal_line.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/page/horizontal_line.mau -------------------------------------------------------------------------------- /tests/e2e/source/page/image.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/page/image.mau -------------------------------------------------------------------------------- /tests/e2e/source/page/list_ordered.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/page/list_ordered.mau -------------------------------------------------------------------------------- /tests/e2e/source/page/list_start.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/page/list_start.mau -------------------------------------------------------------------------------- /tests/e2e/source/page/list_unordered.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/page/list_unordered.mau -------------------------------------------------------------------------------- /tests/e2e/source/source/source_callouts.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/source/source_callouts.mau -------------------------------------------------------------------------------- /tests/e2e/source/source/source_highlight.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/source/source_highlight.mau -------------------------------------------------------------------------------- /tests/e2e/source/source/source_simple.mau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/source/source/source_simple.mau -------------------------------------------------------------------------------- /tests/e2e/test_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/e2e/test_e2e.py -------------------------------------------------------------------------------- /tests/environment/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/environment/test_environment.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- 1 | from mau.test_helpers import * 2 | -------------------------------------------------------------------------------- /tests/lexers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lexers/data_file_lexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/lexers/data_file_lexer.txt -------------------------------------------------------------------------------- /tests/lexers/test_arguments_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/lexers/test_arguments_lexer.py -------------------------------------------------------------------------------- /tests/lexers/test_base_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/lexers/test_base_lexer.py -------------------------------------------------------------------------------- /tests/lexers/test_main_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/lexers/test_main_lexer.py -------------------------------------------------------------------------------- /tests/lexers/test_preprocess_variables_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/lexers/test_preprocess_variables_lexer.py -------------------------------------------------------------------------------- /tests/lexers/test_text_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/lexers/test_text_lexer.py -------------------------------------------------------------------------------- /tests/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/test_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_arguments.py -------------------------------------------------------------------------------- /tests/nodes/test_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_block.py -------------------------------------------------------------------------------- /tests/nodes/test_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_content.py -------------------------------------------------------------------------------- /tests/nodes/test_footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_footnotes.py -------------------------------------------------------------------------------- /tests/nodes/test_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_header.py -------------------------------------------------------------------------------- /tests/nodes/test_inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_inline.py -------------------------------------------------------------------------------- /tests/nodes/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_lists.py -------------------------------------------------------------------------------- /tests/nodes/test_macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_macros.py -------------------------------------------------------------------------------- /tests/nodes/test_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_nodes.py -------------------------------------------------------------------------------- /tests/nodes/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_page.py -------------------------------------------------------------------------------- /tests/nodes/test_paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_paragraph.py -------------------------------------------------------------------------------- /tests/nodes/test_references.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_source.py -------------------------------------------------------------------------------- /tests/nodes/test_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/nodes/test_toc.py -------------------------------------------------------------------------------- /tests/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parsers/main_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_arguments.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_block_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_block_attributes.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_block_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_block_basic.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_block_engine_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_block_engine_group.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_block_engine_mau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_block_engine_mau.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_block_engine_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_block_engine_raw.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_block_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_block_other.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_block_source.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_content.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_control.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_footnotes.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_headers.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_horizontal_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_horizontal_rule.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_internal_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_internal_links.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_lists.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_main_parser.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_paragraph.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_parent.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_source.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_title.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_toc.py -------------------------------------------------------------------------------- /tests/parsers/main_parser/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/main_parser/test_variables.py -------------------------------------------------------------------------------- /tests/parsers/test_arguments_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/test_arguments_parser.py -------------------------------------------------------------------------------- /tests/parsers/test_base_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/test_base_parser.py -------------------------------------------------------------------------------- /tests/parsers/test_create_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/test_create_toc.py -------------------------------------------------------------------------------- /tests/parsers/test_preprocess_variables_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/test_preprocess_variables_parser.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parsers/text_parser/macros/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parsers/text_parser/macros/test_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/macros/test_arguments.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/macros/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/macros/test_class.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/macros/test_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/macros/test_control.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/macros/test_footnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/macros/test_footnote.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/macros/test_generic_macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/macros/test_generic_macro.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/macros/test_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/macros/test_header.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/macros/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/macros/test_image.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/macros/test_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/macros/test_link.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/test_basic_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/test_basic_text.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/test_escaped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/test_escaped.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/test_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/test_style.py -------------------------------------------------------------------------------- /tests/parsers/text_parser/test_verbatim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/parsers/text_parser/test_verbatim.py -------------------------------------------------------------------------------- /tests/text_buffer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/text_buffer/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/text_buffer/test_context.py -------------------------------------------------------------------------------- /tests/text_buffer/test_text_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/text_buffer/test_text_buffer.py -------------------------------------------------------------------------------- /tests/tokens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tokens/test_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/tokens/test_tokens.py -------------------------------------------------------------------------------- /tests/visitors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/visitors/base_visitor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_block.py -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_content.py -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_footnotes.py -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_header.py -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_inline.py -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_lists.py -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_page.py -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_paragraph.py -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_source.py -------------------------------------------------------------------------------- /tests/visitors/base_visitor/test_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/base_visitor/test_toc.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_block.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_content.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_footnotes.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_header.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_inline.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_lists.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_page.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_paragraph.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_source.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/test_templates.py -------------------------------------------------------------------------------- /tests/visitors/jinja_visitor/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Mau/mau/HEAD/tests/visitors/jinja_visitor/toc.py --------------------------------------------------------------------------------