Description
My source file has a text value which is "interrupted" bay another node . I would like to maintain that structure.
The lib seems to wipe away the inner structure and creates a #text with the whole word "(Jahre)
Input
<source> ( <x id="INTERPOLATION" equiv-text="{{ alter }}"/> Jahre ) </source>
Code
const parserOptions = {
parseTagValue: true, //default
trimValues: true,
ignoreAttributes: false,
attributeNamePrefix : "@_"
}
Output
<source>
<x id="INTERPOLATION" equiv-text="{{ alter }}"></x>
(Jahre) </source>
expected data
I would like to keep the source data structure with the "(" before the <x..> and "Jahre )" after the </ x>
Just like the source
How can i achieve this?
Would you like to work on this issue?
Bookmark this repository for further updates.
Description
My source file has a text value which is "interrupted" bay another node . I would like to maintain that structure.
The lib seems to wipe away the inner structure and creates a #text with the whole word "(Jahre)
Input
Code
Output
expected data
I would like to keep the source data structure with the "(" before the <x..> and "Jahre )" after the </ x>
Just like the source
How can i achieve this?
Would you like to work on this issue?
Bookmark this repository for further updates.