mirror of
https://git.adityakumar.xyz/hugo-theme-even.git
synced 2024-11-08 22:49:44 +00:00
parent
b583f811d6
commit
ecb7935896
7 changed files with 48 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"even": {
|
"even": {
|
||||||
"css": "even.93844dae.min.css",
|
"css": "even.c2a46f00.min.css",
|
||||||
"js": "even.ece58db6.min.js"
|
"js": "even.26188efa.min.js"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -41,7 +41,7 @@ flowchartDiagrams:
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```flowchart
|
```flow
|
||||||
st=>start: Start|past:>http://www.google.com[blank]
|
st=>start: Start|past:>http://www.google.com[blank]
|
||||||
e=>end: End:>http://www.google.com
|
e=>end: End:>http://www.google.com
|
||||||
op1=>operation: My Operation|past
|
op1=>operation: My Operation|past
|
||||||
|
@ -61,6 +61,46 @@ c2(no)->op2->e
|
||||||
|
|
||||||
<!--more-->
|
<!--more-->
|
||||||
|
|
||||||
|
{{< highlight "linenos=table" >}}
|
||||||
|
```flow
|
||||||
|
st=>start: Start|past:>http://www.google.com[blank]
|
||||||
|
e=>end: End:>http://www.google.com
|
||||||
|
op1=>operation: My Operation|past
|
||||||
|
op2=>operation: Stuff|current
|
||||||
|
sub1=>subroutine: My Subroutine|invalid
|
||||||
|
cond=>condition: Yes
|
||||||
|
or No?|approved:>http://www.google.com
|
||||||
|
c2=>condition: Good idea|rejected
|
||||||
|
io=>inputoutput: catch something...|request
|
||||||
|
|
||||||
|
st->op1(right)->cond
|
||||||
|
cond(yes, right)->c2
|
||||||
|
cond(no)->sub1(left)->op1
|
||||||
|
c2(yes)->io->e
|
||||||
|
c2(no)->op2->e
|
||||||
|
```
|
||||||
|
{{< / highlight >}}
|
||||||
|
|
||||||
|
## Legacy Usage
|
||||||
|
|
||||||
|
```flowchart
|
||||||
|
st=>start: Start|past:>http://www.google.com[blank]
|
||||||
|
e=>end: End:>http://www.google.com
|
||||||
|
op1=>operation: My Operation|past
|
||||||
|
op2=>operation: Stuff|current
|
||||||
|
sub1=>subroutine: My Subroutine|invalid
|
||||||
|
cond=>condition: Yes
|
||||||
|
or No?|approved:>http://www.google.com
|
||||||
|
c2=>condition: Good idea|rejected
|
||||||
|
io=>inputoutput: catch something...|request
|
||||||
|
|
||||||
|
st->op1(right)->cond
|
||||||
|
cond(yes, right)->c2
|
||||||
|
cond(no)->sub1(left)->op1
|
||||||
|
c2(yes)->io->e
|
||||||
|
c2(no)->op2->e
|
||||||
|
```
|
||||||
|
|
||||||
```flowchart
|
```flowchart
|
||||||
st=>start: Start|past:>http://www.google.com[blank]
|
st=>start: Start|past:>http://www.google.com[blank]
|
||||||
e=>end: End:>http://www.google.com
|
e=>end: End:>http://www.google.com
|
||||||
|
|
|
@ -221,7 +221,7 @@ Even._linkToc = function() {
|
||||||
Even.flowchart = function() {
|
Even.flowchart = function() {
|
||||||
if (!window.flowchart) return;
|
if (!window.flowchart) return;
|
||||||
|
|
||||||
const blocks = document.querySelectorAll('pre code.language-flowchart');
|
const blocks = document.querySelectorAll('pre code.language-flowchart, pre code.language-flow');
|
||||||
for (let i = 0; i < blocks.length; i++) {
|
for (let i = 0; i < blocks.length; i++) {
|
||||||
if (!window.hljs && i % 2 === 0) continue;
|
if (!window.hljs && i % 2 === 0) continue;
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
1
static/dist/even.93844dae.min.css.map
vendored
1
static/dist/even.93844dae.min.css.map
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
static/dist/even.ece58db6.min.js.map
vendored
1
static/dist/even.ece58db6.min.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue