0690a8
Add identity_renderDocbook.sh.
@@ -0,0 +1,36 @@
|
|
1
|
+
|
2
|
+
#
|
3
|
+
# identity_renderDocbook.sh -- This function performs base-rendition
|
4
|
+
# action for DocBook files.
|
5
|
+
#
|
6
|
+
# Copyright (C) 2009-2011 Alain Reguera Delgado
|
7
|
+
#
|
8
|
+
# This program is free software; you can redistribute it and/or
|
9
|
+
# modify it under the terms of the GNU General Public License as
|
10
|
+
# published by the Free Software Foundation; either version 2 of the
|
11
|
+
# License, or (at your option) any later version.
|
12
|
+
#
|
13
|
+
# This program is distributed in the hope that it will be useful, but
|
14
|
+
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
16
|
+
# General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU General Public License
|
19
|
+
# along with this program; if not, write to the Free Software
|
20
|
+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
21
|
+
# USA.
|
22
|
+
#
|
23
|
+
# ----------------------------------------------------------------------
|
24
|
+
# $Id$
|
25
|
+
# ----------------------------------------------------------------------
|
26
|
+
|
27
|
+
function identity_renderDocbook {
|
28
|
+
|
29
|
+
# Produce xhtml output from docbook template instance using XSL
|
30
|
+
# stylesheets as reference.
|
31
|
+
identity_renderDocbookXhtml
|
32
|
+
|
33
|
+
# Produce plaintext output from html outout.
|
34
|
+
identity_renderHtmlPlaintext
|
35
|
+
|
36
|
+
}
|