How to add to Docbook strikethrough functionality? I mean something like this this is striked example text. I mean HTML output generation.
How to add to Docbook strikethrough functionality? I mean something like this this is
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming that you are using DocBook-XSL, here is how you can add the strike-through effect to inline content:
Set the
emphasis.propagates.styleparameter to 1.Set the
html.stylesheetparameter to a suitable value, for examplemystyle.css.Add the following to
mystyle.css:Use
<emphasis role="strike">some text</emphasis>to mark up text snippets in your XML source file that should be decorated.Transform to HTML and behold the result.
More details can be found here: http://www.sagehill.net/docbookxsl/UsingCSS.html.