- Add doc/ directory, so publishing to gh-pages is a bit easier. - Update .gitignore to not ignore the doc/ directory. - Move manual documentation directory into new var directory (var/docs) - Move example dialogue tree into new var directory (var/trees) - Update YARD to find manual documentation in new var directory
17 lines
446 B
HTML
17 lines
446 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Sapling Documentation</title>
|
|
</head>
|
|
<script type="text/javascript" charset="utf-8">
|
|
var match = unescape(window.location.hash).match(/^#!(.+)/);
|
|
var name = match ? match[1] : 'index.html';
|
|
name = name.replace(/^(\w+):\/\//, '').replace(/^\/\//, '');
|
|
window.top.location = name;
|
|
</script>
|
|
<noscript>
|
|
<h1>Oops!</h1>
|
|
<h2>YARD requires JavaScript!</h2>
|
|
</noscript>
|
|
</html>
|