-
Notifications
You must be signed in to change notification settings - Fork 0
/
github_md.xsl
executable file
·111 lines (89 loc) · 4.3 KB
/
github_md.xsl
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
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*"/>
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="/coding_standards">
<xsl:apply-templates select="title" mode="title"/>
<xsl:apply-templates select="title" mode="toc"/>
<xsl:apply-templates select="section" mode="toc"/>
<xsl:text>
</xsl:text>
<xsl:apply-templates select="section"/>
</xsl:template>
<xsl:template match="section">
<xsl:text>
</xsl:text>
<xsl:variable name="section_title"><xsl:value-of select="translate(@title, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ', 'abcdefghijklmnopqrstuvwxyz-')"/></xsl:variable>
<a name="{$section_title}"> </a>
<xsl:value-of select="@title"/><xsl:text>
</xsl:text>
<xsl:value-of select="substring('----------------------------------------------------------------------------------------------------------------------------------------', 1, string-length(@title))"/>
<xsl:apply-templates mode="content"/>
</xsl:template>
<xsl:template match="h2" mode="content">
<xsl:text>
### </xsl:text>
<xsl:variable name="h2"><xsl:value-of select="translate(text(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ', 'abcdefghijklmnopqrstuvwxyz-')"/></xsl:variable>
<a name="{$h2}"> </a>
<xsl:value-of select="text()"/>
</xsl:template>
<xsl:template match="h3" mode="content">
<xsl:text>
#### </xsl:text>
<xsl:variable name="h3"><xsl:value-of select="translate(text(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ', 'abcdefghijklmnopqrstuvwxyz-')"/></xsl:variable>
<a name="{$h3}"> </a>
<xsl:value-of select="text()"/>
</xsl:template>
<xsl:template match="p" mode="content">
<xsl:text>
</xsl:text><xsl:apply-templates mode="content"/><xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="code" mode="content">
<xsl:choose>
<xsl:when test="@style = 'block'">
<xsl:text>
```</xsl:text><xsl:value-of select="@lang"/>
<xsl:value-of select="text()" disable-output-escaping="yes"/>
<xsl:text>
```
</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text> `</xsl:text><xsl:value-of select="text()" disable-output-escaping="yes"/><xsl:text>` </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="ul" mode="content">
<xsl:apply-templates select="li" mode="content"/>
</xsl:template>
<xsl:template match="li" mode="content">
<xsl:text>
</xsl:text>
<xsl:text>- </xsl:text><xsl:value-of select="text()"/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="a" mode="content">
<xsl:text>[</xsl:text><xsl:value-of select="text()"/><xsl:text>](</xsl:text><xsl:value-of select="@href"/><xsl:text>)</xsl:text>
</xsl:template>
<xsl:template match="em" mode="content">
<xsl:text>*</xsl:text><xsl:value-of select="text()"/><xsl:text>*</xsl:text>
</xsl:template>
<xsl:template match="strong" mode="content">
<xsl:text>**</xsl:text><xsl:value-of select="text()"/><xsl:text>**</xsl:text>
</xsl:template>
<!-- main title -->
<xsl:template match="title" mode="title">
<xsl:text>
# </xsl:text>
<xsl:value-of select="text()"/>
<xsl:text>
</xsl:text>
<!--<xsl:value-of select="substring('================================================================================================================================================', 1, string-length(text()))"/>-->
</xsl:template>
<!-- table of content templates -->
<xsl:template match="title" mode="toc">
<xsl:text>
</xsl:text><xsl:text>
</xsl:text>## Contents
</xsl:template>
<xsl:template match="section" mode="toc">
<xsl:text>
1. [</xsl:text>
<xsl:value-of select="@title"/>](#<xsl:value-of select="translate(@title, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ', 'abcdefghijklmnopqrstuvwxyz-')"/><xsl:text>)</xsl:text>
<xsl:apply-templates select="h2" mode="toc"/>
<xsl:apply-templates select="h3" mode="toc"/>
</xsl:template>
<xsl:template match="h2" mode="toc">
<xsl:text>
	1. [</xsl:text>
<xsl:value-of select="text()"/>](#<xsl:value-of select="translate(text(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ', 'abcdefghijklmnopqrstuvwxyz-')"/><xsl:text>)</xsl:text>
</xsl:template>
<xsl:template match="h3" mode="toc">
<xsl:text>
		1. [</xsl:text>
<xsl:value-of select="text()"/>](#<xsl:value-of select="translate(text(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ', 'abcdefghijklmnopqrstuvwxyz-')"/><xsl:text>)</xsl:text>
</xsl:template>
</xsl:stylesheet>