Skip to content

Commit d3deecb

Browse files
committed
chore: wts update
1 parent b921f8a commit d3deecb

File tree

6 files changed

+36
-23
lines changed

6 files changed

+36
-23
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions:
2222
env:
2323
INSTANCE: 'Writerside/notes'
2424
ARTIFACT: 'webHelpNOTES2-all.zip'
25-
DOCKER_VERSION: '242.21870'
25+
DOCKER_VERSION: '243.21565'
2626
ALGOLIA_ARTIFACT: 'algolia-indexes-NOTES.zip'
2727
ALGOLIA_APP_NAME: 'QD1IR5ST5F'
2828
ALGOLIA_INDEX_NAME: 'suresh.dev.index'

Writerside/snippets/class.mermaid

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
classDiagram
2+
Animal <|-- Duck
3+
Animal <|-- Fish
4+
Animal <|-- Zebra
5+
Animal: +int age
6+
Animal: +String gender
7+
Animal: +isMammal()
8+
Animal: +mate()
9+
class Duck {
10+
+String beakColor
11+
+swim()
12+
+quack()
13+
}
14+
class Fish {
15+
-int sizeInFeet
16+
-canEat()
17+
}
18+
class Zebra {
19+
+bool is_wild
20+
+run()
21+
}

Writerside/topics/notes/Kotlin.md

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -75,33 +75,24 @@ $ strings -a app | grep -i com.oracle.svm.core.VM
7575

7676
{src="kotlin/App.kt" lang="kotlin" validate="true" }
7777

78+
<compare>
79+
<code-block lang="kotlin">
80+
if (true) {
81+
doThis()
82+
}
83+
</code-block>
84+
<code-block lang="kotlin">
85+
if (true) doThis()
86+
</code-block>
87+
</compare>
88+
7889
Download <resource src="movies.csv"/>
7990

8091
### Misc
8192

8293
```mermaid
83-
classDiagram
84-
Animal <|-- Duck
85-
Animal <|-- Fish
86-
Animal <|-- Zebra
87-
Animal: +int age
88-
Animal: +String gender
89-
Animal: +isMammal()
90-
Animal: +mate()
91-
class Duck {
92-
+String beakColor
93-
+swim()
94-
+quack()
95-
}
96-
class Fish {
97-
-int sizeInFeet
98-
-canEat()
99-
}
100-
class Zebra {
101-
+bool is_wild
102-
+run()
103-
}
10494
```
95+
{ src="class.mermaid" }
10596

10697
##### Math
10798

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# API Reference
22

3-
<api-doc openapi-path="../../resources/documentation.yaml"/>
3+
<api-doc openapi-path="documentation.yaml"/>

Writerside/writerside.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<snippets src="snippets"/>
88
<topics dir="topics" web-path="topics"/>
99
<images dir="images" web-path="images"/>
10+
<api-specifications dir="api-specs"/>
1011
<resources src="resources"/>
1112
<instance src="notes.tree" web-path="notes/" version="1.0"/>
1213
<instance src="blog.tree" web-path="blog/" version="1.0"/>

0 commit comments

Comments
 (0)