2022-11-26 11:19:16PM

This commit is contained in:
Alexander Wang 2022-11-26 23:19:16 -08:00
parent eb55a49559
commit 93adc4f474
No known key found for this signature in database
GPG key ID: D89FA31966BDBECE
5 changed files with 1655 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{
"name": "",
"shapes": [
{
"id": "hi",
"type": "text",
"pos": {
"x": 0,
"y": 0
},
"width": 167,
"height": 24,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#FFFFFF",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "Inline math $\\frac{1}{2}$",
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "markdown",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 167,
"labelHeight": 24
}
],
"connections": []
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -0,0 +1,43 @@
{
"name": "",
"shapes": [
{
"id": "hi",
"type": "text",
"pos": {
"x": 12,
"y": 12
},
"width": 167,
"height": 24,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#FFFFFF",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "Inline math $\\frac{1}{2}$",
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "markdown",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 167,
"labelHeight": 24
}
],
"connections": []
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -13,6 +13,13 @@ func testTodo(t *testing.T) {
script: `
container.first -> container.second: 1->2
container -> container.second: c->2
`,
},
{
name: "latex",
script: `hi: |md
Inline math $\frac{1}{2}$
|
`,
},
}