idmillington / undum

A client-side framework for narrative hypertext interactive fiction.
https://idmillington.github.com/undum
MIT License
336 stars 80 forks source link

Imports documentation not rendering on "creating" page #60

Open jeremydouglass opened 4 years ago

jeremydouglass commented 4 years ago

On the page:

http://idmillington.github.io/undum/doc/creating.html

The first block should display the normal order of imports:

<script type="text/javascript" src="media/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="media/js/undum.js"></script>
<script type="text/javascript" src="media/js/mygame.game.js">

However it is empty.

The page source is:

<p>The normal pattern of imports in the HTML file is therefore:</p>
<pre><code><script type="text/javascript" src="media/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="media/js/undum.js"></script>
<script type="text/javascript" src="media/js/mygame.game.js"></script>
</code></pre>