def _fill_annotation_window_text_rendered(session, window):
    query = session.query(Annotation) \
        .filter(Annotation.updated.between(window.start, window.end)) \
        .order_by(Annotation.updated.asc())

    for a in query:
        a.text_rendered = markdown.render(a.text)
def _fill_annotation_window_text_rendered(session, window):
    query = session.query(Annotation) \
        .filter(Annotation.updated.between(window.start, window.end)) \
        .order_by(Annotation.updated.asc())

    for a in query:
        a.text_rendered = markdown.render(a.text)
Exemplo n.º 3
0
 def text(self, value):
     self._text = value
     # N.B. We MUST take care here of appropriately escaping the user
     # input. Code elsewhere will assume that the content of the
     # `text_rendered` field is safe for printing without further escaping.
     #
     # `markdown.render` does the hard work for now.
     self._text_rendered = markdown.render(value)
Exemplo n.º 4
0
 def text(self, value):
     self._text = value
     # N.B. We MUST take care here of appropriately escaping the user
     # input. Code elsewhere will assume that the content of the
     # `text_rendered` field is safe for printing without further escaping.
     #
     # `markdown.render` does the hard work for now.
     self._text_rendered = markdown.render(value)
Exemplo n.º 5
0
 def test_it_sanitizes_the_output(self, markdown_render, sanitize):
     markdown.render('foobar')
     sanitize.assert_called_once_with(markdown_render.return_value)
Exemplo n.º 6
0
 def test_it_ignores_inline_match(self):
     actual = markdown.render('Foobar \(1 + 1 = 2\)')
     assert '<p>Foobar \(1 + 1 = 2\)</p>\n' == actual
Exemplo n.º 7
0
 def test_it_ignores_math_block(self):
     actual = markdown.render('$$1 + 1 = 2$$')
     assert '<p>$$1 + 1 = 2$$</p>\n' == actual
Exemplo n.º 8
0
 def test_it_renders_markdown(self):
     actual = markdown.render('_emphasis_ **bold**')
     assert '<p><em>emphasis</em> <strong>bold</strong></p>\n' == actual
Exemplo n.º 9
0
 def text(self, value):
     self._text = value
     self._text_rendered = markdown.render(value)
Exemplo n.º 10
0
 def test_it_sanitizes_the_output(self, markdown_render, sanitize):
     markdown.render('foobar')
     sanitize.assert_called_once_with(markdown_render.return_value)
Exemplo n.º 11
0
 def test_it_ignores_inline_match(self):
     actual = markdown.render('Foobar \(1 + 1 = 2\)')
     assert '<p>Foobar \(1 + 1 = 2\)</p>\n' == actual
Exemplo n.º 12
0
 def test_it_ignores_math_block(self):
     actual = markdown.render('$$1 + 1 = 2$$')
     assert '<p>$$1 + 1 = 2$$</p>\n' == actual
Exemplo n.º 13
0
 def test_it_renders_markdown(self):
     actual = markdown.render('_emphasis_ **bold**')
     assert '<p><em>emphasis</em> <strong>bold</strong></p>\n' == actual