#530 Add Hex example to index.html

This commit is contained in:
Brian Mearns
2019-10-02 22:31:41 -04:00
parent b300a4decb
commit 57921e3f52

4
dist/index.html vendored
View File

@@ -291,7 +291,7 @@ graph TB
<div class="mermaid">
graph TD
A[Christmas] -->|Get money| B(Go shopping)
B --> C{Let me think}
B --> C{{Let me think...<br />Do I want something for work,<br />something to spend every free second with,<br />or something to get around?}}
C -->|One| D[Laptop]
C -->|Two| E[iPhone]
C -->|Three| F[Car]
@@ -443,7 +443,7 @@ Class08 <--> C2: Cool label
const testLineEndings = (test, input) => {
try {
mermaid.render(test, input, () => {});
} catch (err) {
} catch (err) {
console.error("Error in %s:\n\n%s", test, err);
}
};