You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _pages/markdown.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,25 @@ graph TD;
92
92
C-->D;
93
93
```
94
94
95
+
## Plotly
96
+
97
+
```plotly
98
+
{
99
+
"data": [
100
+
{
101
+
"x": [1, 2, 3, 4],
102
+
"y": [10, 15, 13, 17],
103
+
"type": "scatter"
104
+
},
105
+
{
106
+
"x": [1, 2, 3, 4],
107
+
"y": [16, 5, 11, 9],
108
+
"type": "scatter"
109
+
}
110
+
]
111
+
}
112
+
```
113
+
95
114
## Markdown guide
96
115
97
116
Academic Pages uses [kramdown](https://kramdown.gettalong.org/index.html) for Markdown rendering, which has some differences from other Markdown implementations such as GitHub's. In addition to this guide, please see the [kramdown Syntax page](https://kramdown.gettalong.org/syntax.html) for full documentation.
0 commit comments