diff --git a/Scripts/Functions/Render/Docbook/docbook.sh b/Scripts/Functions/Render/Docbook/docbook.sh index 84044b4..d4176a0 100755 --- a/Scripts/Functions/Render/Docbook/docbook.sh +++ b/Scripts/Functions/Render/Docbook/docbook.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# render_doDocbook.sh -- This function performs base-rendition +# docbook.sh -- This function performs base-rendition # action for DocBook files. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,13 +23,13 @@ # $Id$ # ---------------------------------------------------------------------- -function render_doDocbook { +function docbook { # Produce xhtml output from docbook template instance using XSL # stylesheets as reference. - render_convertDocbookToXhtml + docbook_convertToXhtml # Produce plaintext output from html outout. - render_convertHtml2Text + xhtml_convertToText }