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)
예제 #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)
예제 #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)
예제 #5
0
 def test_it_sanitizes_the_output(self, markdown_render, sanitize):
     markdown.render('foobar')
     sanitize.assert_called_once_with(markdown_render.return_value)
예제 #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
예제 #7
0
 def test_it_ignores_math_block(self):
     actual = markdown.render('$$1 + 1 = 2$$')
     assert '<p>$$1 + 1 = 2$$</p>\n' == actual
예제 #8
0
 def test_it_renders_markdown(self):
     actual = markdown.render('_emphasis_ **bold**')
     assert '<p><em>emphasis</em> <strong>bold</strong></p>\n' == actual
예제 #9
0
파일: annotation.py 프로젝트: tetratorus/h
 def text(self, value):
     self._text = value
     self._text_rendered = markdown.render(value)
예제 #10
0
파일: markdown_test.py 프로젝트: nlisgo/h
 def test_it_sanitizes_the_output(self, markdown_render, sanitize):
     markdown.render('foobar')
     sanitize.assert_called_once_with(markdown_render.return_value)
예제 #11
0
파일: markdown_test.py 프로젝트: nlisgo/h
 def test_it_ignores_inline_match(self):
     actual = markdown.render('Foobar \(1 + 1 = 2\)')
     assert '<p>Foobar \(1 + 1 = 2\)</p>\n' == actual
예제 #12
0
파일: markdown_test.py 프로젝트: nlisgo/h
 def test_it_ignores_math_block(self):
     actual = markdown.render('$$1 + 1 = 2$$')
     assert '<p>$$1 + 1 = 2$$</p>\n' == actual
예제 #13
0
파일: markdown_test.py 프로젝트: nlisgo/h
 def test_it_renders_markdown(self):
     actual = markdown.render('_emphasis_ **bold**')
     assert '<p><em>emphasis</em> <strong>bold</strong></p>\n' == actual