Compare commits

..

4 Commits

Author SHA1 Message Date
Sergio Martínez Portela
24dc516d64 fix(org_rw): Ensure closing delimiters are same subtype as openers.
Some checks failed
Testing / style-formatting (push) Waiting to run
Testing / style-sorted-imports (push) Waiting to run
Testing / stability-extra-test (push) Waiting to run
Testing / pytest (push) Successful in 25s
Testing / mypy (push) Has been cancelled
2025-02-09 16:49:25 +01:00
Sergio Martínez Portela
7375a69229 Don't cut delimiter lines out of get_lines_between(). 2025-02-09 16:49:06 +01:00
Sergio Martínez Portela
e07964af55 Add dom.TableRow.get_raw() support.
Some checks failed
Testing / pytest (push) Successful in 36s
Testing / mypy (push) Failing after 1m17s
Testing / style-formatting (push) Failing after 41s
Testing / style-sorted-imports (push) Failing after 25s
Testing / stability-extra-test (push) Successful in 31s
2025-02-09 16:25:55 +01:00
Sergio Martínez Portela
df178d08d8 feat(dom): Add support for generic drawer outputs.
Some checks failed
Testing / pytest (push) Successful in 23s
Testing / mypy (push) Failing after 28s
Testing / style-formatting (push) Failing after 24s
Testing / style-sorted-imports (push) Successful in 18s
Testing / stability-extra-test (push) Successful in 24s
2025-02-09 14:13:28 +01:00
3 changed files with 6 additions and 5 deletions

View File

@ -29,7 +29,7 @@ class GenericDrawerNode(DrawerNode):
self.drawer_name = drawer_name
def __repr__(self):
return "<Drawer{}: {}>".format(self.drawer_name, len(self.children))
return "<Drawer(): {}>".format(self.drawer_name, len(self.children))
class PropertyNode:
@ -83,6 +83,7 @@ class TableRow:
return get_raw_contents(self.orig)
class Text:
def __init__(self, content):
self.content = content

View File

@ -641,9 +641,9 @@ class Headline:
# TODO: Allow indentation of these blocks inside others
indentation_tree = [current_node]
tree.append(current_node)
elif content.strip().startswith(":") and content.strip().endswith(":"):
elif content.strip().startswith(':') and content.strip().endswith(':'):
assert current_node is None
current_node = dom.GenericDrawerNode(content.strip().strip(":"))
current_node = dom.GenericDrawerNode(content.strip().strip(':'))
# TODO: Allow indentation of these blocks inside others
indentation_tree = [current_node]
@ -887,7 +887,7 @@ class Headline:
for line in everything:
if start <= line.linenum < end:
if "get_raw" in dir(line):
if 'get_raw' in dir(line):
yield "".join(line.get_raw())
else:
yield line.line

View File

@ -7,9 +7,9 @@ from .org_rw import (
Italic,
Line,
ListItem,
TableRow,
RawLine,
Strike,
TableRow,
Text,
Underlined,
Verbatim,