fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Thema extension proposal.
[redakcja.git]
/
src
/
documents
/
xml_tools.py
diff --git
a/src/documents/xml_tools.py
b/src/documents/xml_tools.py
index
f2c885d
..
ac145db
100644
(file)
--- a/
src/documents/xml_tools.py
+++ b/
src/documents/xml_tools.py
@@
-21,7
+21,11
@@
def _trim(text, trim_begin=True, trim_end=True):
that eg. one big XML file can be compiled from many small XML files.
"""
if trim_begin:
that eg. one big XML file can be compiled from many small XML files.
"""
if trim_begin:
- text = RE_TRIM_BEGIN.split(text, maxsplit=1)[-1]
+ parts = RE_TRIM_BEGIN.split(text, maxsplit=1)
+ text = parts[-1]
+ if len(parts) > 1:
+ lines = parts[0].count('\n')
+ text = f'<!--TRIM:{lines}-->' + text
if trim_end:
text = RE_TRIM_END.split(text, maxsplit=1)[0]
return text
if trim_end:
text = RE_TRIM_END.split(text, maxsplit=1)[0]
return text