Merge branch 'master' of github.com:christopher-ramirez/secretary

This commit is contained in:
Christopher Ramírez 2017-09-01 15:10:34 -06:00
commit 47207c76ca
3 changed files with 4 additions and 1 deletions

View file

@ -451,6 +451,8 @@ class Renderer(object):
return (
value.replace('\n', Markup('<text:line-break/>'))
.replace('\t', Markup('<text:tab/>'))
.replace('\x0b', '<text:space/>')
.replace('\x0c', '<text:space/>')
)