-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfountain2pdf_2html.py
executable file
·100 lines (76 loc) · 1.87 KB
/
fountain2pdf_2html.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
import re
class Underline(object):
parse_re = re.compile(
# underline
r'_'
# must not be followed by space
r'(?=\S)'
# inside text
r'([^_]+)'
# finishing with underline
r'(?<=\S)_'
)
start_html = '<u>'
end_html = '</u>'
class Italic(object):
parse_re = re.compile(
# one star
r'\*'
# anything but a space, then text
r'([^\s].*?)'
# finishing with one star
r'\*'
# must not be followed by star
r'(?!\*)'
)
start_html = '<em>'
end_html = '</em>'
class Bold(object):
parse_re = re.compile(
# two stars
r'\*\*'
# must not be followed by space
r'(?=\S)'
# inside text
r'(.+?[*_]*)'
# finishing with two stars
r'(?<=\S)\*\*'
)
start_html = '<strong>'
end_html = '</strong>'
class BoldItalic(object):
parse_re = re.compile(
# three stars
r'\*\*\*'
# must not be followed by space
r'(?=\S)'
# inside text
r'(.+?[*_]*)'
# finishing with three stars
r'(?<=\S)\*\*\*'
)
start_html = '<strong><em>'
end_html = '</em></strong>'
class Asteriks(object):
parse_re = re.compile(
# one slash and one star
r'\\\*'
# must not be followed by space
r'(?=\S)'
# inside text
r'(.+?[*_]*)'
# finishing with one slash and one star
r'(?<=\S)\\\*'
)
start_html = '*'
end_html = '*'
styles = (Asteriks, BoldItalic, Bold, Italic, Underline)
def Fountain2HTML(text, plaintext=False):
out = text
if not plaintext:
for x in styles:
out = x.parse_re.sub(x.start_html + r'\1' + x.end_html, out)
else:
for x in styles:
out = x.parse_re.sub(r'\1', out)
return out