Markdown inside of hyperlink markdown doesn't work.
Created by: VertigoRay
Components
- GitLab 7.6.2
- GitLab Shell 2.4.0
- GitLab API v3
- Ruby 2.1.5p273
- Rails 4.1.1
Description
When you use markdown inside of the markdown's square brackets to create bold, italics, etc ... it shows the html instead of generating the html. Shown in Example 1.
Additionally, when you use HTML inside of the markdown's square brackets to create bold, italics, etc ... it shows the no evidence of formatting changes. Shown in Example 2.
Example 1
Markdown:
the [fox *runs* fast](http://example.com).
Results:
the fox runs fast.
Expected:
the fox runs fast.
Example 2
Markdown:
the [fox <em>runs</em> fast](http://example.com).
Results:
the fox runs fast.
Expected:
the fox runs fast.