Skip to content
New issue

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

Iterate on All P forget Header paragraph #122

Open
aboubiz opened this issue Nov 15, 2022 · 0 comments
Open

Iterate on All P forget Header paragraph #122

aboubiz opened this issue Nov 15, 2022 · 0 comments

Comments

@aboubiz
Copy link

aboubiz commented Nov 15, 2022

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant