My OpenOffice default paragraph style defines an indentation of 1.3em for the first line of every paragraph.
Now, typographically more adequate would be, if the indentation would be 0 for the very first paragraph of a chapter or after a blockquote (or any other non-paragraph breaking the text flow).
Is there any automatic way to tell OO to leave the indentation aside on these paragraphs? With "automatic" I mean, that I don't want to define another style and assign it to every first paragraph around.
Edit: For the ones with knowledge in CSS: I want to achieve something like this with as little hassle as possible:
p {
text-indent: 1.3em;
}
h1 + p, h2 + p, h3 + p,
blockquote + p, table + p{
text-indent: 0;
}
