Compare commits

..

5 Commits

Author SHA1 Message Date
Sergio Martínez Portela
3b90723250 format: Automatic formatting fixes.
All checks were successful
Testing / pytest (push) Successful in 23s
Testing / mypy (push) Successful in 28s
Testing / style-formatting (push) Successful in 23s
Testing / style-sorted-imports (push) Successful in 19s
Testing / stability-extra-test (push) Successful in 26s
2025-02-09 16:50:52 +01:00
Sergio Martínez Portela
506a17dc5c fix(org_rw): Ensure closing delimiters are same subtype as openers. 2025-02-09 16:50:52 +01:00
Sergio Martínez Portela
0bdb29a278 Don't cut delimiter lines out of get_lines_between(). 2025-02-09 16:50:52 +01:00
Sergio Martínez Portela
8b4e12ea2e Add dom.TableRow.get_raw() support. 2025-02-09 16:50:52 +01:00
Sergio Martínez Portela
dbac8b2d6e feat(dom): Add support for generic drawer outputs. 2025-02-09 16:50:52 +01:00
3 changed files with 5 additions and 6 deletions

View File

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

View File

@ -641,9 +641,9 @@ class Headline:
# TODO: Allow indentation of these blocks inside others # TODO: Allow indentation of these blocks inside others
indentation_tree = [current_node] indentation_tree = [current_node]
tree.append(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 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 # TODO: Allow indentation of these blocks inside others
indentation_tree = [current_node] indentation_tree = [current_node]
@ -887,7 +887,7 @@ class Headline:
for line in everything: for line in everything:
if start <= line.linenum < end: if start <= line.linenum < end:
if 'get_raw' in dir(line): if "get_raw" in dir(line):
yield "".join(line.get_raw()) yield "".join(line.get_raw())
else: else:
yield line.line yield line.line

View File

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