-
Notifications
You must be signed in to change notification settings - Fork 30
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
Special Handling for Workflowy: Part 3 #17
Comments
Note from the author: there is this class for special Workflowy handling, in case someone wanted to fork: |
@drosenstark Hi, sorry this took so long! |
Testing using instructions here |
Hey Daniel, thanks so much for doing this. Results:
Thanks! |
I see it now... it's a peculiarity of Workflowy that it puts a |
Please see Other Workflowy Related Issues
Description of Problem
In Workflowy's editor for notes it wraps links, bold, italics and underline.
<a class="contentLink" target="_blank" rel="noreferrer" href="[SITE]">[SITE]</a>
... those links then get converted to text in Atomic Chrome. They then return and get wrapped again... and so on and so on.<span class="contentBold">
, while italics usecontentItalics
and underline usescontentUnderline
Multiple formats are delimited with spaces in the
class
attribute, e.g.,class="contentItalic contentUnderline"
(as you would expect from CSS)Solutions
All of these tags should be removed on extraction to Atom.
I'm not sure this is specific for Workflowy. Any app that loads the contentEditable with HTML should have it expunged when it's moved to Atom, I think.
The text was updated successfully, but these errors were encountered: