mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Added video and ol tags
This commit is contained in:
parent
bc7d4c4803
commit
43c802c961
@ -248,6 +248,11 @@ div.inc {
|
||||
float: right;
|
||||
}
|
||||
|
||||
video
|
||||
{
|
||||
border: black dotted 1px;
|
||||
border-bottom: black solid 2px;
|
||||
}
|
||||
|
||||
.code_box
|
||||
{
|
||||
|
@ -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"/>
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user