trentm / trentm/python-markdown2
Wrong code block output?
Open
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 2.8k
- Forks
- 459
- Avg merge
- 2d 19h
- Merged PRs (30d)
- 4
Description
import markdown2
text = """
```
- (void)openWebsocketWithURL:(NSURL *)url {
// Create a security policy that enforces SSL validation
SRSecurityPolicy *securePolicy = [[SRSecurityPolicy alloc] initWithCertificateChainValidationEnabled:YES];
}
```
"""
print(markdown2.markdown(text))
Produces the following:
<p>```
- (void)openWebsocketWithURL:(NSURL *)url {</p>
<pre><code>// Create a security policy that enforces SSL validation
SRSecurityPolicy *securePolicy = [[SRSecurityPolicy alloc] initWithCertificateChainValidationEnabled:YES];
</code></pre>
<p>}
```</p>
From what I understand it should produce everything inside a code tag and no pre tag like so:
text = "``` a = 90 ```"
print(markdown2.markdown(text))
# Prints out
# <p><code>a = 90</code></p>
Am I incorrect or am I missing something?
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
No file or test is named in the issue. Run the supplied Python markdown2 example first, then trace how fenced and inline code blocks are parsed and compare the result with the reported and expected HTML; done means the intended behavior is confirmed and covered by a regression test or documentation update if needed.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100