Skip to content

Commit 725d38e

Browse files
committed
added bootstrap to api-docs
1 parent b8be4fe commit 725d38e

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

Documentation.xsl

+12-6
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,18 @@
99
<!-- DOCUMENT TEMPLATE -->
1010
<!-- Format the whole document as a valid HTML document -->
1111
<xsl:template match="/">
12-
<HTML>
13-
<BODY>
12+
<html>
13+
<head>
14+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"/>
15+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"/>
16+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js">
17+
//just wow
18+
</script>
19+
</head>
20+
<body>
1421
<xsl:apply-templates select="//assembly"/>
15-
</BODY>
16-
</HTML>
22+
</body>
23+
</html>
1724
</xsl:template>
1825

1926
<!-- ASSEMBLY TEMPLATE -->
@@ -38,8 +45,7 @@
3845

3946
<!-- Display the type's name and information -->
4047
<H2><xsl:value-of select="$MemberName"/></H2>
41-
<xsl:apply-templates/>
42-
48+
4349
<!-- If this type has public fields, display them -->
4450
<xsl:if test="//member[contains(@name,concat('F:',$FullMemberName))]">
4551
<H3>Fields</H3>

0 commit comments

Comments
 (0)