website-risg/laws/aeuv.toml

53 lines
1.1 KiB
TOML
Raw Normal View History

2024-05-26 13:04:41 +02:00
[law]
id = 10008049
name = "AEUV"
par_sign = "Artikel"
[[law.classifiers]]
name = " Teil"
is_root = true
match_function = "contains"
[[law.classifiers]]
name = "Titel"
is_root = false
match_function = "contains"
[[law.classifiers]]
name = "Kapitel"
is_root = false
match_function = "contains"
[[law.classifiers]]
name = "Abschnitt"
is_root = false
match_function = "contains"
[parser]
remove_strings = [
"<tab />",
"<b>", "</b>",
"<i>", "</i>",
"<n>", "</n>",
"<super>", "</super>",
]
move_para_headers_into_content = true
2024-05-26 17:14:08 +02:00
[[parser.replace_rules]]
find = "<br />"
replace_with = " "
2024-05-26 13:04:41 +02:00
[[parser.replace_rules]]
find = "<gdash />"
replace_with = "-"
2024-05-26 17:12:31 +02:00
# Replace all 'erltext's which have subsections...
2024-05-26 16:42:34 +02:00
[[parser.replace_rules]]
2024-05-26 17:12:31 +02:00
find = """<absatz typ="erltext" ct="text" halign="j">("""
replace_with = """<absatz typ="abs" ct="text" halign="j">("""
2024-05-26 16:42:34 +02:00
2024-05-26 17:12:31 +02:00
# ... and replace all 'erltext's which have only one section
[[parser.replace_rules]]
find = """/ueberschrift><absatz typ="erltext" ct="text" halign="j">"""
replace_with = """/ueberschrift><absatz typ="abs" ct="text" halign="j">"""