summaryrefslogtreecommitdiff
path: root/fonts/gentium-tug/doc/GentiumPlus-6.101/documentation/source/makepsmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'fonts/gentium-tug/doc/GentiumPlus-6.101/documentation/source/makepsmd.py')
-rw-r--r--fonts/gentium-tug/doc/GentiumPlus-6.101/documentation/source/makepsmd.py134
1 files changed, 67 insertions, 67 deletions
diff --git a/fonts/gentium-tug/doc/GentiumPlus-6.101/documentation/source/makepsmd.py b/fonts/gentium-tug/doc/GentiumPlus-6.101/documentation/source/makepsmd.py
index d71466dfd3..08c378b21c 100644
--- a/fonts/gentium-tug/doc/GentiumPlus-6.101/documentation/source/makepsmd.py
+++ b/fonts/gentium-tug/doc/GentiumPlus-6.101/documentation/source/makepsmd.py
@@ -1,67 +1,67 @@
-#!/usr/bin/env python
-'''Process font documentation .md files for use on product sites '''
-__url__ = 'http://github.com/silnrsi/fontdocs'
-__copyright__ = 'Copyright (c) 2021 SIL International (http://www.sil.org)'
-__license__ = 'Released under the MIT License (http://opensource.org/licenses/MIT)'
-__author__ = 'Victor Gaultney'
-
-import re
-from silfont.core import execute
-
-argspec = [
- ('infile', {'help': 'Input .md filename'}, {'type': 'infile'}),
- ('outfile',{'help': 'Output .md filename'}, {'type': 'outfile'})
-]
-
-def doit(args):
- infile = args.infile
- outfile = args.outfile
-
- firstline = True
- inheader = False
- inpsonly = False
-
- temptext = ""
-
- # remove YAML header and uncomment the [font] shortcode
- for line in infile:
- if firstline:
- firstline = False
- inheader = True
- continue
- if inheader:
- if line.startswith("---"):
- inheader = False
- continue
- if line.startswith("<!-- PRODUCT SITE ONLY"):
- inpsonly = True
- continue
- if inpsonly:
- if line.startswith("-->"):
- inpsonly = False
- continue
- temptext = temptext + line
-
- # reconfigure image markup
- # mdimage = re.compile(r"!\[(.*?)\]\((\S+\.\w+)\)\{\.(\S+)\}\n?<!--\sPRODUCT\sSITE\sIMAGE\sSRC\s(\S+)\s-->")
- # temptext = mdimage.sub(r"<img class='\3' alt='\1' src='\4' />\n[caption]<em>\1</em>[/caption]", temptext)
-
- mdimage = re.compile(r"!\[(.*?)\]\((\S+\.\w+)\)\{\.(\S+)\}\n?<!--\sPRODUCT\sSITE\sIMAGE\sSRC\s(\S+)\s-->")
- temptext = mdimage.sub(r"<img class='\3' alt='\1' src='\4' />", temptext)
-
- mdimagecap = re.compile(r"<figcaption>(.*?)<\/figcaption>")
- temptext = mdimagecap.sub(r"[caption]<em>\1</em>[/caption]", temptext)
-
- # replace local links with site references
- temptext = temptext.replace(".md","")
-
- # replace links to external markdown files
- temptext = temptext.replace(".rawmd",".md")
-
- outfile.write(temptext)
-
- return
-
-
-def cmd() : execute(None,doit, argspec)
-if __name__ == "__main__": cmd()
+#!/usr/bin/env python
+'''Process font documentation .md files for use on product sites '''
+__url__ = 'http://github.com/silnrsi/fontdocs'
+__copyright__ = 'Copyright (c) 2021 SIL International (http://www.sil.org)'
+__license__ = 'Released under the MIT License (http://opensource.org/licenses/MIT)'
+__author__ = 'Victor Gaultney'
+
+import re
+from silfont.core import execute
+
+argspec = [
+ ('infile', {'help': 'Input .md filename'}, {'type': 'infile'}),
+ ('outfile',{'help': 'Output .md filename'}, {'type': 'outfile'})
+]
+
+def doit(args):
+ infile = args.infile
+ outfile = args.outfile
+
+ firstline = True
+ inheader = False
+ inpsonly = False
+
+ temptext = ""
+
+ # remove YAML header and uncomment the [font] shortcode
+ for line in infile:
+ if firstline:
+ firstline = False
+ inheader = True
+ continue
+ if inheader:
+ if line.startswith("---"):
+ inheader = False
+ continue
+ if line.startswith("<!-- PRODUCT SITE ONLY"):
+ inpsonly = True
+ continue
+ if inpsonly:
+ if line.startswith("-->"):
+ inpsonly = False
+ continue
+ temptext = temptext + line
+
+ # reconfigure image markup
+ # mdimage = re.compile(r"!\[(.*?)\]\((\S+\.\w+)\)\{\.(\S+)\}\n?<!--\sPRODUCT\sSITE\sIMAGE\sSRC\s(\S+)\s-->")
+ # temptext = mdimage.sub(r"<img class='\3' alt='\1' src='\4' />\n[caption]<em>\1</em>[/caption]", temptext)
+
+ mdimage = re.compile(r"!\[(.*?)\]\((\S+\.\w+)\)\{\.(\S+)\}\n?<!--\sPRODUCT\sSITE\sIMAGE\sSRC\s(\S+)\s-->")
+ temptext = mdimage.sub(r"<img class='\3' alt='\1' src='\4' />", temptext)
+
+ mdimagecap = re.compile(r"<figcaption>(.*?)<\/figcaption>")
+ temptext = mdimagecap.sub(r"[caption]<em>\1</em>[/caption]", temptext)
+
+ # replace local links with site references
+ temptext = temptext.replace(".md","")
+
+ # replace links to external markdown files
+ temptext = temptext.replace(".rawmd",".md")
+
+ outfile.write(temptext)
+
+ return
+
+
+def cmd() : execute(None,doit, argspec)
+if __name__ == "__main__": cmd()