2019-06-30 14:22:59 +02:00
|
|
|
<!-- index.html: Referred to as the "main page" in documentation -->
|
|
|
|
|
2019-06-30 09:57:20 +02:00
|
|
|
<noscript>JavaScript is required to convert the URL into a usable web page.</noscript>
|
2019-06-30 14:22:59 +02:00
|
|
|
|
2019-06-30 09:57:20 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
if (window.location.hash) {
|
2019-06-30 14:22:59 +02:00
|
|
|
// Try to get page data from the URL if possible
|
2019-06-30 09:57:20 +02:00
|
|
|
var hash = window.location.hash.slice(1);
|
|
|
|
var data = atob(hash);
|
|
|
|
document.write(decodeURIComponent(data));
|
|
|
|
} else {
|
2019-06-30 14:22:59 +02:00
|
|
|
// Otherwise redirect to the editor
|
2019-06-30 09:57:20 +02:00
|
|
|
window.location.replace("./editor");
|
|
|
|
}
|
|
|
|
</script>
|