go-org-orgwiki/org
Niklas Fasching dce67eaddf Improve ATTR_HTML keyword parsing
Org mode separates kvs not as initially assumed by whitespace (~ csv) but
rather at keywords (~ :\w+).

This is still not replicating Org mode behaviour though as I decided against
attributes ignoring multi-definitions. Instead we stack their
values (and those existing on the element) for certain attributes (class, style
for now).

e.g.
[[foo]]

would become <foo class="a"> in Org mode but becomes <foo class="a b"> with
go-org.
2018-12-18 00:16:41 +01:00
..
testdata Improve ATTR_HTML keyword parsing 2018-12-18 00:16:41 +01:00
block.go Improve handling of elements containing raw text 2018-12-17 13:40:15 +01:00
document.go Refactor Footnotes: Exclude footnotes heading during export, not parsing 2018-12-17 13:40:15 +01:00
document_test.go Convert panics to errors for public interface 2018-12-14 16:37:32 +01:00
drawer.go Add basic support for drawers 2018-12-17 00:01:03 +01:00
example.go Improve handling of elements containing raw text 2018-12-17 13:40:15 +01:00
footnote.go Refactor Footnotes: Exclude footnotes heading during export, not parsing 2018-12-17 13:40:15 +01:00
headline.go Refactor Footnotes: Exclude footnotes heading during export, not parsing 2018-12-17 13:40:15 +01:00
html.go html: Render headline priority 2018-12-17 22:39:29 +01:00
html_entity.go Add support for org-entities (e.g. ndash, mdash, \Aacute) 2018-12-11 22:12:51 +01:00
html_test.go Support basic #+INCLUDE (src/example/export block only) 2018-12-14 17:09:00 +01:00
inline.go Improve handling of elements containing raw text 2018-12-17 13:40:15 +01:00
keyword.go Improve ATTR_HTML keyword parsing 2018-12-18 00:16:41 +01:00
list.go Improve descriptive list org rendering 2018-12-17 16:02:56 +01:00
org.go Improve ATTR_HTML keyword parsing 2018-12-18 00:16:41 +01:00
org_test.go Support basic #+INCLUDE (src/example/export block only) 2018-12-14 17:09:00 +01:00
paragraph.go Fix multiline emphasis 2018-12-10 17:53:12 +01:00
table.go Add table pretty printing & alignment 2018-12-14 15:49:40 +01:00
util.go Fix multiline emphasis 2018-12-10 17:53:12 +01:00