trestle.core.markdown.markdown_processor
trestle.core.markdown.markdown_processor ¤
A markdown processor.
Attributes¤
logger = logging.getLogger(__name__) module-attribute ¤
Classes¤
MarkdownProcessor ¤
A markdown processor.
Source code in trestle/core/markdown/markdown_processor.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | |
Attributes¤
governed_header = None instance-attribute ¤
Functions¤
__init__() ¤
Initialize markdown processor.
Source code in trestle/core/markdown/markdown_processor.py
40 41 42 | |
fetch_value_from_header(md_path, key) ¤
Fetch value for the given key from the markdown header if exists.
Source code in trestle/core/markdown/markdown_processor.py
119 120 121 122 123 124 125 126 127 | |
process_control_markdown(md_path, cli_section_dict=None, part_label_to_id_map=None) ¤
Parse control markdown and build tree with identified OSCAL components.
Source code in trestle/core/markdown/markdown_processor.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | |
process_markdown(md_path, read_header=True, read_body=True) ¤
Parse the markdown and builds the tree to operate over it.
Source code in trestle/core/markdown/markdown_processor.py
52 53 54 55 56 57 58 59 60 61 62 63 | |
read_markdown_wo_processing(md_path, read_header=True, read_body=True) ¤
Read markdown header to dictionary and body to string.
Source code in trestle/core/markdown/markdown_processor.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | |
render_gfm_to_html(markdown_text) ¤
Render given Github Flavored Markdown to HTML.
Source code in trestle/core/markdown/markdown_processor.py
44 45 46 47 48 49 50 | |
Functions¤
handler: python