2022-11-26 11:19:16PM
This commit is contained in:
parent
eb55a49559
commit
93adc4f474
5 changed files with 1655 additions and 0 deletions
43
e2etests/testdata/todo/latex/dagre/board.exp.json
vendored
Normal file
43
e2etests/testdata/todo/latex/dagre/board.exp.json
vendored
Normal 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": []
|
||||
}
|
||||
781
e2etests/testdata/todo/latex/dagre/sketch.exp.svg
vendored
Normal file
781
e2etests/testdata/todo/latex/dagre/sketch.exp.svg
vendored
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 336 KiB |
43
e2etests/testdata/todo/latex/elk/board.exp.json
vendored
Normal file
43
e2etests/testdata/todo/latex/elk/board.exp.json
vendored
Normal 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": []
|
||||
}
|
||||
781
e2etests/testdata/todo/latex/elk/sketch.exp.svg
vendored
Normal file
781
e2etests/testdata/todo/latex/elk/sketch.exp.svg
vendored
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 336 KiB |
|
|
@ -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}$
|
||||
|
|
||||
`,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue