static-dev / spike

A modern static build tool, powered by webpack
http://spike.js.org
Other
470 stars 29 forks source link

Demo template generates mangled html #68

Closed knupska closed 7 years ago

knupska commented 7 years ago

Executing a spike compile with a fresh pull results in the demo template compiling some gnarly looking html with two issues:

  1. The quotes for the spike links href are being eaten by the typographic quote system and converted to left/right single quote characters (switching it out for " in index.sgr just results in them being converted to left/right double quotes).

  2. The markdown demonstration paragraph is wrapped in another paragraph.

<main role="main" id="index">
  <h2>Hello World!</h2>
  <p>Thanks for using <a href=‘https://github.com/static-dev/spike’>spike</a></p>
  <p>Example of locals: bar</p>
  <p>
    <p>Example of <strong>markdown</strong></p>
  </p>
jescalan commented 7 years ago

Good catch, sorry about that! I'll fix this in a moment

jescalan commented 7 years ago

@knupska Fixed! Thanks again for catching this 😁