doc(guide): add concepts

This commit is contained in:
Misko Hevery
2012-05-29 16:25:21 -07:00
parent 96697f464f
commit 7a5f25f667
15 changed files with 7961 additions and 2 deletions

View File

@@ -58,10 +58,10 @@ exports.Example.prototype.addSource = function(name, content) {
};
exports.Example.prototype.toHtml = function() {
return '<h1>Source</h1>\n' +
return '<h2>Source</h2>\n' +
this.toHtmlEdit() +
this.toHtmlTabs() +
'<h1>Demo</h1>\n' +
'<h2>Demo</h2>\n' +
this.toHtmlEmbed();
};

View File

@@ -145,6 +145,11 @@ ul.events > li > h3 {
font-family: monospace;
}
.center {
display: block;
margin: 2em auto;
}
.diagram {
display: block;
margin: 2em auto;
@@ -175,3 +180,7 @@ ul.events > li > h3 {
color: white;
text-decoration: none;
}
.clear {
clear: both;
}