Created
December 17, 2015 11:55
-
-
Save SteveBarnett/674484f24c24a6cc7ba4 to your computer and use it in GitHub Desktop.
Notion generated markup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div style="margin-left: 0em"> | |
<ul> | |
<li>Finish the tutorial</li> | |
</ul> | |
</div> | |
<div style="margin-left: 0em"> | |
<ul> | |
<li>Drag in an image or file from your desktop</li> | |
</ul> | |
</div> | |
<div style="margin-left: 0em"> | |
<ul> | |
<li>Create a new page</li> | |
</ul> | |
</div> | |
<div style="margin-left: 1em"> | |
<ul> | |
<li>Share the new page with others</li> | |
</ul> | |
</div> | |
<div style="margin-left: 0em"> | |
<ul> | |
<li>Learn the shortcuts</li> | |
</ul> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li>Finish the tutorial</li> | |
<li>Drag in an image or file from your desktop</li> | |
<li>Create a new page | |
<ul> | |
<li>Share the new page with others</li> | |
</ul> | |
</li> | |
<li>Learn the shortcuts</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Notion collaborative document editor is very snazzy, but the export option needs some work. I had a look at a simple unordered list.
The export creates a
div
,ul
, andli
for each list item. This breaks the semantics of having things in a list in the first place: eachli
is treated as a separate list.The export uses inline styles to show a nested list item. This breaks the link between the nested
li
and the parentli
.