from code-server

This commit is contained in:
Andy Bunce 2021-03-23 22:38:58 +00:00
parent eda5c02fe9
commit 5ef8bdba47
2652 changed files with 528235 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<project>
<target name="dita2html5-webfont"
depends="dita2html5-webfont.init,
dita2html5"/>
<target name="dita2html5-webfont.init">
<property name="args.hdf"
location="${dita.plugin.com.example.html5-webfont.dir}/include/webfont.hdf.xml"/>
<property name="args.cssroot"
location="${dita.plugin.com.example.html5-webfont.dir}/css"/>
<property name="args.css" value="custom.css"/>
<property name="args.copycss" value="yes"/>
<property name="args.csspath" value="css"/>
</target>
</project>

View file

@ -0,0 +1,3 @@
body {
font-family: 'Noto Sans', sans-serif;
}

View file

@ -0,0 +1,3 @@
<div>
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet"/>
</div>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://www.dita-ot.org/rng/plugin.rnc" type="application/relax-ng-compact-syntax"?>
<plugin id="com.example.html5-webfont">
<require plugin="org.dita.html5"/>
<transtype name="html5-webfont" extends="html5" desc="HTML5 with Noto Sans webfont"/>
<feature extension="ant.import" file="build_html5-webfont.xml"/>
</plugin>