remotes/1693045480750635534/spooky-22
Aevann1 2021-12-24 04:19:42 +02:00
parent ea3a9e3896
commit 3d9cb2fd5d
1 changed files with 2 additions and 1 deletions

View File

@ -5,13 +5,14 @@ from flask import g
from .markdown import *
from .sanitize import *
from .const import *
from mistletoe.html_renderer import HTMLRenderer
def create_comment(text, autojanny=False):
if autojanny: author_id = AUTOJANNY_ID
else: author_id = NOTIFICATIONS_ID
text = text.replace('r/', 'r\/').replace('u/', 'u\/')
text_html = sanitize(mistletoe.Document(text))
text_html = sanitize(HTMLRenderer().render(mistletoe.Document(text)))
new_comment = Comment(author_id=author_id,
parent_submission=None,
distinguish_level=6,