Files @ 8020737d7a56
Branch filter:

Location: symposion_app/vendor/symposion/text_parser.py

bsturmfels
Switch vendored requirements to "editable" to simplify development

This will allow us to remove the `sys.path` hacking in pinaxcon/settings.py.
1
2
3
4
5
6
7
8
9
import bleach

tags = bleach.sanitizer.ALLOWED_TAGS[:]
tags.extend(['p', 'pre'])


def parse(text):
    scrubbed_text = bleach.clean(text, tags=tags)
    return scrubbed_text