Compare commits

...

2 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

View File

@ -415,6 +415,7 @@ class Headline:
if (
isinstance(line, DelimiterLine)
and line.delimiter_type == DelimiterLineType.END_BLOCK
and line.type_data.subtype == current_node.header.type_data.subtype
):
start = current_node.header.linenum
@ -872,9 +873,24 @@ class Headline:
yield from get_links_from_content(item.content)
def get_lines_between(self, start, end):
for line in self.contents:
# @TODO: Generalize for other line types too.
everything = (
[]
# + self.keywords
+ self.contents
# + self.list_items
# + self.table_rows
# + self.properties
# + self.structural
+ self.delimiters
)
for line in everything:
if start <= line.linenum < end:
if 'get_raw' in dir(line):
yield "".join(line.get_raw())
else:
yield line.line
def get_contents(self, format):
if format == "raw":