Add github pages URLs

This commit is contained in:
Joshua Bell 2014-01-27 08:55:20 -08:00
parent 483f001d85
commit f74aadf2d9
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
jsbasic - Applesoft BASIC in JavaScript
=======================================
This is hosted for playing with at http://calormen.com/applesoft/
This is hosted for playing with at http://inexorabletash.github.io/jsbasic/
Use `git clone --recursive` to get [polyfill](http://github.com/inexorabletash/polyfill) for older browsers.

View File

@ -25,7 +25,7 @@ By <a href="mailto:inexorabletash@gmail.com">Joshua Bell</a>
&mdash; <a target="_blank" href="reference.htm">Applesoft BASIC Quick Reference</a>
<p>Related projects:
<a href="http://calormen.com/jslogo">Logo in Javascript</a>
<a href="./jslogo">Logo in Javascript</a>
| <a href="http://calormen.com/vnIIc">Streaming video to an Apple II - vnIIc</a>
</p>

View File

@ -3,7 +3,7 @@ Web Page Embedding
Want to show off your BASIC creation on your own web site? Now you can with just a tiny bit of HTML.
There are two parts:
1. Insert `<script src="//calormen.com/jsbasic/script.js"></script>` on your page to enable it
1. Insert `<script src="http://inexorabletash.github.io/jsbasic/script.js"></script>` on your page to enable it
2. Add `<script type="text/applesoft-basic">` then your BASIC program then `</script>`
Like this:
@ -12,7 +12,7 @@ Like this:
<title>My BASIC example</title>
<h1>Look what I did!</h1>
<script src="//calormen.com/jsbasic/script.js"></script>
<script src="http://inexorabletash.github.io/jsbasic/script.js"></script>
<script type="text/applesoft-basic">
10 REM Your BASIC program goes here