Modify ↓
Opened 5 weeks ago
#13907 assigned defect
Colon + monospace markup in the definition of wiki text is incorrectly rendered
| Reported by: | Jun Omae | Owned by: | Jun Omae |
|---|---|---|---|
| Priority: | normal | Milestone: | next-stable-1.6.x |
| Component: | wiki system | Version: | |
| Severity: | minor | Keywords: | |
| Cc: | Branch: | ||
| Release Notes: | |||
| API Changes: | |||
| Internal Changes: | |||
Description
>>> print(format_to_html(env, context, ' word :: description\n')) <dl class="wiki"><dt>word</dt><dd>description </dd></dl> >>> print(format_to_html(env, context, ' `word` :: description\n')) <dl class="wiki"><dt><code>word</code></dt><dd>description </dd></dl> >>> print(format_to_html(env, context, ' {{{word}}} :: description\n')) <dl class="wiki"><dt><code>word</code></dt><dd>description </dd></dl> >>> print(format_to_html(env, context, ' :`word` :: description\n')) <blockquote> <p> :<code>word</code> :: description </p> </blockquote> >>> print(format_to_html(env, context, ' :{{{word}}} :: description\n')) <blockquote> <p> :<code>word</code> :: description </p> </blockquote>
Attachments (0)
Note:
See TracTickets
for help on using tickets.


