We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
When it iterates on all the paragraphs in a document even those of the Header
Those of Header don't selected.
How do that ?
Sincerely.
Vincent
from odf import opendocument, text, teletype
doc = opendocument.load('test.odt') for item in doc.getElementsByType(text.P): print(item) s = teletype.extractText(item) if s.find('NAMETAG') != -1: s = s.replace('NAMETAG', 'vincent.cieslak') new_item = text.P() new_item.setAttribute('stylename', item.getAttribute('stylename')) new_item.addText(s) item.parentNode.insertBefore(new_item, item) item.parentNode.removeChild(item)
doc.save('result.odt')
Outprint : NAMETAG NAMETAG
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When it iterates on all the paragraphs in a document even those of the Header
Those of Header don't selected.
How do that ?
Sincerely.
Vincent
from odf import opendocument, text, teletype
doc = opendocument.load('test.odt')
for item in doc.getElementsByType(text.P):
print(item)
s = teletype.extractText(item)
if s.find('NAMETAG') != -1:
s = s.replace('NAMETAG', 'vincent.cieslak')
new_item = text.P()
new_item.setAttribute('stylename', item.getAttribute('stylename'))
new_item.addText(s)
item.parentNode.insertBefore(new_item, item)
item.parentNode.removeChild(item)
doc.save('result.odt')
Outprint :
NAMETAG
NAMETAG
The text was updated successfully, but these errors were encountered: