-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathxsltdoc.config
More file actions
59 lines (54 loc) · 1.85 KB
/
xsltdoc.config
File metadata and controls
59 lines (54 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>
<XSLTdocConfig>
<Title>Tei2html</Title>
<Introduction>
TEI to HTML and ePub conversion scripts using XSLT.
</Introduction>
<!--
The absolute or relative path to the target directory
where the HTML files are created. If a relative path
is used it is always relative to the config file.
-->
<TargetDirectory path="./doc"/>
<!--
The absolute or relative path to the source directory.
This is where the XSLT source files can be found.
If a relative path is used it is always relative
to the config file.
-->
<SourceDirectory path="./"/>
<!--
A list of source code files which shall be documented.
Only stylesheets which are not included by another
have to be listed here. The included stylesheets
are found automatically by following the include or
the import statements in the including stylesheet.
Relative references are relative to the SourceDirectory
defined above.
-->
<RootStylesheets>
<File href="tei2html.xsl"/>
<File href="tei2epub.xsl"/>
<File href="locale/messages.xsl"/>
<File href="modules/normalize-table.xsl"/>
<!-- <File href="tei2wl.xsl"/> -->
<File href="tei2dc.xsl"/>
<File href="tei2tei.xsl"/>
<!-- <File href="pgtei2tei.xsl"/>
<File href="tei2pgtei.xsl"/> -->¬
<File href="sandbox/extract-page.xsl"/>
<File href="locale/messages2po.xsl"/>
<File href="xml2kwic.xsl"/>
<File href="checks.xsl"/>
<File href="merge-documents.xsl"/>
</RootStylesheets>
<!--
A list of CSS Stylesheet files which should be added to the standard CSS file included (XSLTdoc.css)
- Not mandatory
- media attribute optional.
-->
<AdditionalCSS>
<!-- <File href="print.css" media="print"/> -->
<File href="../../XSLTdoc/css/XSLTdoc.css"/>
</AdditionalCSS>
</XSLTdocConfig>