Skip to content

Commit

Permalink
resolve rebase and merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ikirudennis committed Aug 9, 2024
2 parents 4c620d9 + 3478434 commit 8a83b7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion tests/test_lists.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from textile import Textile
from textile.objects.list import List


def test_lists():
t = Textile()
result = t.textileLists("* one\n* two\n* three")
Expand Down
6 changes: 4 additions & 2 deletions textile/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,10 @@ def fTextileList(self, match):
if ';' in pt and ':' in tl:
ls[tl] = 2

# atts = pba(atts) tabs = '\t' * len(tl) If start is still None,
# set it to '', else leave the value that we've already formatted.
# atts = pba(atts)
# tabs = '\t' * len(tl)
# If start is still None, set it to '', else leave the value
# that we've already formatted.
start = start or ''
# if this item tag isn't in the list, create a new list and
# item, else just create the item
Expand Down

0 comments on commit 8a83b7d

Please sign in to comment.