I'd like to extract tables into my node body but xpath not accept it.

     <xmlbody>
      ...
      <table id="x"> 
        <tbody> 
          <tr> 
            <td>a</td>  
            <td>b</td>  
            <td>c</td> 
          </tr>  
          <tr> 
            <td>d</td>  
            <td>e</td>  
            <td>f</td> 
          </tr>  
        </tbody> 
      </table>
      ...
    <xmlbody>

will be imported as
a b c d e f

Whats wrong here?

Comments

markusgerlach created an issue. See original summary.

twistor’s picture

Category: Bug report » Support request
Status: Active » Closed (cannot reproduce)

You would need to provide more information for someone to be able to help you.

What are your current XPath values?

What is the structure you are trying to parse?