Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 135003
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:42:55+00:00 2026-05-11T06:42:55+00:00

i would like to convert xhtml to dokuwiki syntax using xslt . now, one

  • 0

i would like to convert xhtml to dokuwiki syntax using xslt.

now, one thing i can not seem to work my head around is how to handle nested lists. the dokuwiki syntax uses an asterisk (*) for a list item which is prepended by two white spaces per nesting level (c.f. wiki syntax).

my question: in the following example, how can the <xsl:template mach=’li’> that matches the list item 2.1.1 be aware of it’s nesting level, in order to prepend the right amount of white spaces?

* list item 1 * list item 2   * list item 2.1     * list item 2.1.1   * list item 2.2   * list item 2.3 * list item 3 

corresponds to

  • list item 1
  • list item 2
    • list item 2.1
      • list item 2.1.1
    • list item 2.2
    • list item 2.3
  • list item 3

which is how the following html is displayed:

<ul>     <li>         list item 1     </li>     <li>         list item 2         <ul>             <li>                 list item 2.1                 <ul>                     <li>list item 2.1.1</li>                 </ul>             </li>             <li>list item 2.2</li>             <li>list item 2.3</li>         </ul>     </li>     <li>         list item 3     </li> </ul> 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T06:42:56+00:00Added an answer on May 11, 2026 at 6:42 am

    The following transformation:

    <xsl:stylesheet version='1.0'  xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>  <xsl:output method='text'/>   <xsl:strip-space elements='*'/>   <xsl:variable name='vBlanks'   select=''                                        ''/>  <xsl:variable name='vnNestSpaces' select='2'/>       <xsl:template match='li'>       <xsl:variable name='vNestLevel'            select='count(ancestor::li)'/>       <xsl:value-of select=        'concat('&#xA;',                substring($vBlanks,1,$vnNestSpaces*$vNestLevel),                '*  ', normalize-space(text()[1])                )'/>       <xsl:apply-templates select='*'/>     </xsl:template> </xsl:stylesheet> 

    when applied on the original XML document:

    <ul>     <li> list item 1     </li>     <li> list item 2                 <ul>             <li> list item 2.1                                 <ul>                     <li>list item 2.1.1</li>                 </ul>             </li>             <li>list item 2.2</li>             <li>list item 2.3</li>         </ul>     </li>     <li> list item 3    </li> </ul> 

    produces the desired result:

    *  list item 1 *  list item 2   *  list item 2.1     *  list item 2.1.1   *  list item 2.2   *  list item 2.3 *  list item 3 

    Do note the following:

    1. The required indentation is determined by the value of count(ancesstor::li).

    2. The space for indenting is taken directly from a sufficiently large blank line (contains enough blanks for 20 levels of nesting). There is no need to recursively output the spaces one by one.

    3. The transformation is more efficient, due to 2. above.

    4. Note the use of the XPath substring() function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 83k
  • Answers 83k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I would also include a date time stamp for when… May 11, 2026 at 4:49 pm
  • Editorial Team
    Editorial Team added an answer Create a seperate viewmodel with the data you need in… May 11, 2026 at 4:49 pm
  • Editorial Team
    Editorial Team added an answer Because anything that is building native extensions is compiling something… May 11, 2026 at 4:49 pm

Related Questions

Is there a straightforward way to take docbook content and convert it into DokuWiki
I would like to programatically convert a Microsoft Word document into XHTML. The language
I am writing a basic word processing application and am trying to settle on
I'm trying to convert Matt Berseth's ' YUI Style Yes/No Confirm Dialog ' so

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.