Add Developer Examples; Transaction Tutorial

* Add new Developer Examples page

* Add a transaction tutorial describing in detail how to make various
  different transactions.

* Add a new "multicode" CSS class to allow combination of consecutive
  code blocks into a single code block. This lets us use pygments
  highlighting for multiple different types of code within the same
  aparent block of code.

* Get autocrossref to ignore code blocks so we don't need to endcrossref
  every time we encounter a code block. This makes the source much more
  readable and maintainable.
This commit is contained in:
David A. Harding 2014-05-29 23:19:57 -04:00
parent 1a123bbb4a
commit d1b4b08729
No known key found for this signature in database
GPG key ID: 4B29C30FF29EC4B7
6 changed files with 1277 additions and 1 deletions

View file

@ -769,6 +769,21 @@ table td,table th{
color:#646464;
}
.toccontent .multicode {
background-color:#f5f5f5;
border:1px solid #ccc;
overflow-y:auto;
padding-bottom: 17px;
}
.toccontent .multicode pre {
border: 0px none;
padding: 0px;
overflow-y: visible;
margin-bottom: -17px;
}
.highlight { background: #ffffff; }
.highlight .c { color: #999988; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */