diff options
| author | Grégoire Duchêne <gduchene@fastmail.net> | 2010-12-05 00:45:11 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@fastmail.net> | 2010-12-05 00:45:11 +0100 |
| commit | f7d1468cc0fe4237b702252f9bbaae5ba61b6bfd (patch) | |
| tree | b2f2417a552d0c9385997a042417afdab81c7391 /src/parser/document_p.cpp | |
| parent | dc0ac72c987ec48c6b2a90d0056b4e79a3be092b (diff) | |
Bug inside the inline code text rule fixed.
It turned out that the inline code text rule was not honoring the
verbatim constraint either. This issue is now solved.
Also, I made the text_p parser more flexible by adding an inherited
attribute to it.
Diffstat (limited to 'src/parser/document_p.cpp')
| -rw-r--r-- | src/parser/document_p.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/document_p.cpp b/src/parser/document_p.cpp index 875211c..f4a95e2 100644 --- a/src/parser/document_p.cpp +++ b/src/parser/document_p.cpp @@ -16,5 +16,5 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "document_p.h" document_p::document_p() : document_p::base_type(document_) { - document_ = +text_; + document_ = +text_(ph::val(L"*'`")); } |
