200ok-ch / org-parser

org-parser is a parser for the Org mode markup language for Emacs.
GNU Affero General Public License v3.0
316 stars 15 forks source link

Tests for semantic block parsing of drawers #29

Closed schoettl closed 3 years ago

schoettl commented 3 years ago

Reintroduce tests for parsing semantic blocks (e.g. drawers).

This PR does not enable parsing semantic block for org files. It only prepares for it.

Parsing semantic blocks can later be enabled by changing EBNF:

- <line> = (headline / drawer-begin-line / drawer-end-line / … / content-line) eol
+ <line> = (headline / drawer / … / content-line) eol