webplatform / mediawiki-conversion

Convert MediaWiki XML backup into structured raw text file tree
https://github.com/webplatform/docs
15 stars 4 forks source link

ul li code a loses the a in Markdown conversion #22

Closed renoirb closed 8 years ago

renoirb commented 8 years ago

The following code in HTML

<ul>
  <li><code><a href="/wiki/css/cssom/runtimeStyle" title="css/cssom/runtimeStyle">runtimeStyle</a></code></li>
  <li><code><a href="/wiki/css/cssom/style" title="css/cssom/style">style</a></code></li>
  <li><code><a href="/wiki/css/cssom/properties/posWidth" title="css/cssom/properties/posWidth">posWidth</a></code></li>
</ul>

Becomes in Markdown; losing the link.

-   `runtimeStyle`
-   `style`
-   `posWidth`

Expected outcome is to keep the link notation. The fact that its code is less important than the link.

A page that has this issue css/cssom/properties/pixelWidth