Hi,

I have this structure

<numbered_list>
        <list_numbering></listnumbering>
        <entry>
                <absatz>STRING<absatz>
       </entry>
</numbered_list>

I try to achieve a command that inserts me a new <listnumbering> and a
new <entry> as both are required, after the previous one. The carriage
is positioned at the "STRING."

      <list_numbering></listnumbering>
        <entry>
                <absatz><absatz>
       </entry>

the result should be this:

<numbered_list>
        <list_numbering>1.1</listnumbering>
        <entry>
                <absatz>STRING<absatz>
       </entry>
        <list_numbering></listnumbering>
        <entry>
                <absatz><absatz>
      </entry>
</numbered_list>


I got it working when the list_numbering is an attribute, with the
insertNode command.

thanks for help
Christoph

Reply via email to