Added video and ol tags

This commit is contained in:
Davis King 2017-12-16 22:24:48 -05:00
parent bc7d4c4803
commit 43c802c961
3 changed files with 19 additions and 1 deletions

View File

@ -248,6 +248,11 @@ div.inc {
float: right;
}
video
{
border: black dotted 1px;
border-bottom: black solid 2px;
}
.code_box
{

View File

@ -1,4 +1,4 @@
<?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"/>

View File

@ -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