Template:Baum: Difference between revisions

From railML 3 Wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
No edit summary
No edit summary
Line 33: Line 33:
| limit=99999
| limit=99999
}}
}}
Prepare this table with a script like
<syntaxhighlight lang=bash>
sed -i.bak -e 's/(/{/g' Baum.csv
sed -i -e 's/)/}/g' Baum.csv
sed -i -e 's/+/#/g' Baum.csv
sed -i -e 's/!/|/g' Baum.csv
sed -i '1d' Baum.csv
sed -i -e ':a;N;$!ba;s/\n//g' Baum.csv
</syntaxhighlight>


[[category:template]]
[[category:template]]
</noinclude>
</noinclude>

Revision as of 10:43, 26 June 2022

This template is supposed to support the display of the XML tree.

Substitution:

{ (
} )
# +
| !

This template defines the table "Baum". View table.


Abruf der Tabelle als CSV: View CSV

Prepare this table with a script like

sed -i.bak -e 's/(/{/g' Baum.csv
sed -i -e 's/)/}/g' Baum.csv
sed -i -e 's/+/#/g' Baum.csv
sed -i -e 's/!/|/g' Baum.csv
sed -i '1d' Baum.csv
sed -i -e ':a;N;$!ba;s/\n//g' Baum.csv