Commit 43c802c9 authored by Davis King's avatar Davis King

Added video and ol tags

parent bc7d4c48
......@@ -248,6 +248,11 @@ div.inc {
float: right;
}
video
{
border: black dotted 1px;
border-bottom: black solid 2px;
}
.code_box
{
......
<?xml version="1.0" encoding="ISO-8859-1" ?>
<?xml version="1.0" encoding="utf8" ?>
<!--
To the extent possible under law, Davis E King has waived all copyright and
......@@ -731,6 +731,11 @@
</ul>
</xsl:if>
</xsl:template>
<xsl:template match="ol">
<ol>
<xsl:apply-templates/>
</ol>
</xsl:template>
<xsl:template match="u">
<u>
<xsl:apply-templates/>
......@@ -781,6 +786,12 @@
<xsl:apply-templates/>
</img>
</xsl:template>
<xsl:template match="video">
<video controls="">
<source src="{@src}" type="video/webm"/>
<xsl:apply-templates/>
</video>
</xsl:template>
<xsl:template name="term_list_go">
<xsl:param name="num"/>
......
......@@ -219,9 +219,11 @@ makedocs ()
cp docs/*.js docs/chm/docs
cp docs/*.png docs/web
cp docs/*.jpg docs/web
cp docs/*.webm docs/web
cp docs/*.ico docs/web
cp docs/*.png docs/chm/docs
cp docs/*.jpg docs/chm/docs
cp docs/*.webm docs/chm/docs
cp docs/*.ico docs/chm/docs
cd docs/chm/docs || report_failure
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment