diff options
author | Adrian Dudau <adrian.dudau@enea.com> | 2014-06-26 14:38:37 +0200 |
---|---|---|
committer | Adrian Dudau <adrian.dudau@enea.com> | 2014-06-26 14:38:37 +0200 |
commit | 067445c1487c1a73e0ee8a9ae3e82d446406ab57 (patch) | |
tree | d47aa232ce1c82cf47aa348f20902937e073239a /documentation/template/formal.object.heading.xsl | |
download | yocto-docs-067445c1487c1a73e0ee8a9ae3e82d446406ab57.tar.gz |
initial commit for Enea Linux 4.0daisy
Migrated from the internal git server on the daisy-enea branch
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'documentation/template/formal.object.heading.xsl')
-rw-r--r-- | documentation/template/formal.object.heading.xsl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/documentation/template/formal.object.heading.xsl b/documentation/template/formal.object.heading.xsl new file mode 100644 index 0000000..4f3900d --- /dev/null +++ b/documentation/template/formal.object.heading.xsl | |||
@@ -0,0 +1,21 @@ | |||
1 | <xsl:stylesheet version="1.0" | ||
2 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
3 | xmlns:d="http://docbook.org/ns/docbook" | ||
4 | xmlns="http://www.w3.org/1999/xhtml" | ||
5 | exclude-result-prefixes="d"> | ||
6 | |||
7 | <xsl:template name="formal.object.heading"> | ||
8 | <xsl:param name="object" select="."/> | ||
9 | <xsl:param name="title"> | ||
10 | <xsl:apply-templates select="$object" mode="object.title.markup"> | ||
11 | <xsl:with-param name="allow-anchors" select="1"/> | ||
12 | </xsl:apply-templates> | ||
13 | </xsl:param> | ||
14 | <p class="title"> | ||
15 | <b><xsl:copy-of select="$title"/></b> | ||
16 | <xsl:call-template name="permalink"> | ||
17 | <xsl:with-param name="node" select="$object"/> | ||
18 | </xsl:call-template> | ||
19 | </p> | ||
20 | </xsl:template> | ||
21 | </xsl:stylesheet> \ No newline at end of file | ||