Proposed alternative fix for the title stripping issue #1

Open
kenkeiras wants to merge 5 commits from kenkeiras/org-rw:proposed-fix/strip-title into fix/strip-title
Showing only changes of commit 9c54f83ec7 - Show all commits

View File

@ -1816,7 +1816,7 @@ def token_list_to_plaintext(tok_list) -> str:
else:
assert isinstance(chunk, MarkerToken)
return "".join(contents).strip()
return "".join(contents)
def token_list_to_raw(tok_list):