-
Notifications
You must be signed in to change notification settings - Fork 0
/
mdx_outline.py
231 lines (175 loc) · 6.54 KB
/
mdx_outline.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
'''
Outline extension for Python-Markdown
=====================================
Wraps the document logical sections (as implied by h1-h6 headings).
By default, the wrapper element is a section tag having a class attribute
"sectionN", where N is the header level being wrapped. Also, the header
attributes get moved to the wrapper.
Usage
-----
>>> import markdown
>>> src = """
... # 1
... Section 1
... ## 1.1
... Subsection 1.1
... ## 1.2
... Subsection 1.2
... ### 1.2.1
... Hey 1.2.1 Special section
... ### 1.2.2
... #### 1.2.2.1
... # 2
... Section 2
... """.strip()
>>> html = markdown.markdown(src, ['outline'])
>>> print(html)
<section class="section1"><h1>1</h1>
<p>Section 1</p>
<section class="section2"><h2>1.1</h2>
<p>Subsection 1.1</p>
</section><section class="section2"><h2>1.2</h2>
<p>Subsection 1.2</p>
<section class="section3"><h3>1.2.1</h3>
<p>Hey 1.2.1 Special section</p>
</section><section class="section3"><h3>1.2.2</h3>
<section class="section4"><h4>1.2.2.1</h4>
</section></section></section></section><section class="section1"><h1>2</h1>
<p>Section 2</p>
</section>
Divs instead of sections, custom class names:
>>> src = """
... # Introduction
... # Body
... ## Subsection
... # Bibliography
... """.strip()
>>> html = markdown.markdown(src, extensions=['outline(wrapper_tag=div, wrapper_cls=s%(LEVEL)d)'])
>>> print(html)
<div class="s1"><h1>Introduction</h1>
</div><div class="s1"><h1>Body</h1>
<div class="s2"><h2>Subsection</h2>
</div></div><div class="s1"><h1>Bibliography</h1>
</div>
By default, the header attributes are moved to the wrappers
>>> src = """
... # Introduction {: foo='bar' }
... """.strip()
>>> html = markdown.markdown(src, extensions=['attr_list', 'outline'])
>>> print(html)
<section class="section1" foo="bar"><h1>Introduction</h1>
</section>
Content-specified classes are added to settings wrapper class
>>> src = """
... # Introduction {: class='extraclass' }
... """.strip()
>>> html = markdown.markdown(src, extensions=['attr_list', 'outline'])
>>> print(html)
<section class="extraclass section1"><h1>Introduction</h1>
</section>
Non consecutive headers shouldn't be a problem:
>>> src="""
... # ONE
... ### TOO Deep
... ## Level 2
... # TWO
... """.strip()
>>> html = markdown.markdown(src, extensions=['attr_list', 'outline'])
>>> print(html)
<section class="section1"><h1>ONE</h1>
<section class="section3"><h3>TOO Deep</h3>
</section><section class="section2"><h2>Level 2</h2>
</section></section><section class="section1"><h1>TWO</h1>
</section>
Dependencies
------------
* [Markdown 2.0+](http://www.freewisdom.org/projects/python-markdown/)
Copyright
---------
- 2011, 2012 [The active archives contributors](http://activearchives.org/)
- 2011, 2012 [Michael Murtaugh](http://automatist.org/)
- 2011, 2012, 2017 [Alexandre Leray](http://stdin.fr/)
All rights reserved.
This software is released under the modified BSD License.
See LICENSE.md for details.
Further credits
---------------
This is a rewrite of the
[mdx_addsection extension](http://git.constantvzw.org/?p=aa.core.git;a=blob;f=aacore/mdx_addsections.py;h=969e520a42b0018a2c4b74889fecc83a7dd7704a;hb=HEAD)
we've written for [active archives](http://activearchives.org). The first
version had a bug with non hierachical heading structures. This is no longer a
problem: a couple of weeks ago, Jesse Dhillon pushed to github a similar plugin
which fixes the problem. Thanks to him, mdx_outline no longer has the problem.
See also
--------
- <https://github.com/jessedhillon/mdx_sections>
- <http://html5doctor.com/outlines/>
'''
import re
from markdown import Extension
from markdown.treeprocessors import Treeprocessor
from xml.etree import ElementTree
__version__ = "1.3.0"
class OutlineProcessor(Treeprocessor):
def process_nodes(self, node):
s = []
pattern = re.compile('^h(\d)')
wrapper_cls = self.wrapper_cls
for child in list(node):
match = pattern.match(child.tag.lower())
if match:
depth = int(match.group(1))
section = ElementTree.SubElement(node, self.wrapper_tag)
section.append(child)
if self.move_attrib:
for key, value in list(child.attrib.items()):
section.set(key, value)
del child.attrib[key]
node.remove(child)
if '%(LEVEL)d' in self.wrapper_cls:
wrapper_cls = self.wrapper_cls % {'LEVEL': depth}
cls = section.attrib.get('class')
if cls:
section.attrib['class'] = " ".join([cls, wrapper_cls])
elif wrapper_cls: # no class attribute if wrapper_cls==''
section.attrib['class'] = wrapper_cls
contained = False
while s:
container, container_depth = s[-1]
if depth <= container_depth:
s.pop()
else:
contained = True
break
if contained:
container.append(section)
node.remove(section)
s.append((section, depth))
else:
if s:
container, container_depth = s[-1]
container.append(child)
node.remove(child)
def run(self, root):
self.wrapper_tag = self.config.get('wrapper_tag')[0]
self.wrapper_cls = self.config.get('wrapper_cls')[0]
self.move_attrib = self.config.get('move_attrib')[0]
self.process_nodes(root)
return root
class OutlineExtension(Extension):
def __init__(self, *args, **kwargs):
self.config = {
'wrapper_tag': ['section', 'Tag name to use, default: section'],
'wrapper_cls': ['section%(LEVEL)d', 'Default CSS class applied to sections'],
'move_attrib': [True, 'Move header attributes to the wrapper']
}
super(OutlineExtension, self).__init__(**kwargs)
def extendMarkdown(self, md):
ext = OutlineProcessor(md)
ext.config = self.config
md.treeprocessors.register(ext, 'outline', 6)
def makeExtension(configs={}):
return OutlineExtension(configs)
if __name__ == "__main__":
import doctest
doctest.testmod()