Compare commits
5 Commits
24dc516d64
...
3b90723250
Author | SHA1 | Date | |
---|---|---|---|
![]() |
3b90723250 | ||
![]() |
506a17dc5c | ||
![]() |
0bdb29a278 | ||
![]() |
8b4e12ea2e | ||
![]() |
dbac8b2d6e |
@ -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,7 +83,6 @@ class TableRow:
|
||||
return get_raw_contents(self.orig)
|
||||
|
||||
|
||||
|
||||
class Text:
|
||||
def __init__(self, content):
|
||||
self.content = content
|
||||
|
@ -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
|
||||
|
@ -7,9 +7,9 @@ from .org_rw import (
|
||||
Italic,
|
||||
Line,
|
||||
ListItem,
|
||||
TableRow,
|
||||
RawLine,
|
||||
Strike,
|
||||
TableRow,
|
||||
Text,
|
||||
Underlined,
|
||||
Verbatim,
|
||||
|
Loading…
Reference in New Issue
Block a user