Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pystache_custom
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pystache_custom
Commits
9eab209c
You need to sign in or sign up before continuing.
Commit
9eab209c
authored
Dec 22, 2011
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issue #33 (via fczuardi): "multiline comments not working"
See
https://github.com/defunkt/pystache/issues/33
parent
f6f24cbf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
pystache/renderengine.py
+2
-1
tests/test_renderengine.py
+8
-0
No files found.
pystache/renderengine.py
View file @
9eab209c
...
@@ -106,7 +106,8 @@ class RenderEngine(object):
...
@@ -106,7 +106,8 @@ class RenderEngine(object):
self
.
section_re
=
re
.
compile
(
section
,
re
.
M
|
re
.
S
)
self
.
section_re
=
re
.
compile
(
section
,
re
.
M
|
re
.
S
)
tag
=
r"
%(otag)
s(#|=|&|!|>|\{)?(.+?)\1?
%(ctag)
s+"
%
tags
tag
=
r"
%(otag)
s(#|=|&|!|>|\{)?(.+?)\1?
%(ctag)
s+"
%
tags
self
.
tag_re
=
re
.
compile
(
tag
)
# We use re.DOTALL to permit multiline comments, in accordance with the spec.
self
.
tag_re
=
re
.
compile
(
tag
,
re
.
DOTALL
)
def
_render_tags
(
self
,
template
):
def
_render_tags
(
self
,
template
):
output
=
[]
output
=
[]
...
...
tests/test_renderengine.py
View file @
9eab209c
...
@@ -166,3 +166,11 @@ class RenderEngineTestCase(unittest.TestCase):
...
@@ -166,3 +166,11 @@ class RenderEngineTestCase(unittest.TestCase):
context
=
{
'test'
:
(
lambda
text
:
'{{hi}}
%
s'
%
text
)}
context
=
{
'test'
:
(
lambda
text
:
'{{hi}}
%
s'
%
text
)}
self
.
_assert_render
(
'{{hi}} Mom'
,
template
,
context
)
self
.
_assert_render
(
'{{hi}} Mom'
,
template
,
context
)
def
test_render__section__comment__multiline
(
self
):
"""
Check that multiline comments are permitted.
"""
self
.
_assert_render
(
'foobar'
,
'foo{{! baz }}bar'
)
self
.
_assert_render
(
'foobar'
,
'foo{{!
\n
baz }}bar'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment