It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hello All.
Does anyone know how I might export all marked text from the page? (confluence 5.85)
Text can by bold/italic/underline.
Example
source text:
export text:
Navigation
Customer Information Management
Residential Customers
New Residential Customer
Thank you.
You could write a small plugin extracting the body of the page and filter the content with a regular expression.
The page content is stored in XHTML so the bold text looks like this: <strong>some Text</strong>.
The RegEx might then look something like this: <strong>[A-z,-\s]+<\/strong>
To get the substrings out of the page content you might use something like this:
Pattern p0 = Pattern.compile("<strong>[A-z,-\s]+<\/strong>"); Matcher m = p0.matcher(pageContent); while (m.find()) { System.out.printf("%s%n", m.group(1)); }
Edit:
I guess this RegEx should be even better, because it matches any character except line breaks. Also you need two backslashes, one for Java and one for the RegEx syntax:
Pattern p0 = Pattern.compile("<strong>(.*)<\\/strong>");
Hi team, I’m Avinoam, a product manager on Confluence Cloud, and today I’m really excited to let the Community know that all customers can now try out the new editing experience and see some of the ...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.