(→기타 옵션) |
|||
(사용자 2명의 중간 판 40개는 보이지 않습니다) | |||
2번째 줄: | 2번째 줄: | ||
;runbox 스펙 | ;runbox 스펙 | ||
==box 유형== | ==v1== | ||
===box 유형=== | |||
{| class='wikitable' | {| class='wikitable' | ||
! box !! 입력 !! 출력 !! lang 옵션 !! box 단위 식별 !! 비고 | ! box !! 입력 !! 출력 !! lang 옵션 !! box 단위 식별 !! 비고 | ||
13번째 줄: | 14번째 줄: | ||
|} | |} | ||
==api 유형== | ===api 유형=== | ||
{| class='wikitable' | {| class='wikitable' | ||
|- | |- | ||
20번째 줄: | 21번째 줄: | ||
| rowspan='3' | run | | rowspan='3' | run | ||
| bash, c, cpp, csharp, go, java, kotlin, perl, php, python, r, ruby, sqlite3 | | bash, c, cpp, csharp, go, java, kotlin, perl, php, python, r, ruby, sqlite3 | ||
| | | run | ||
| | | | ||
|- | |- | ||
33번째 줄: | 34번째 줄: | ||
| rowspan='3' | multi | | rowspan='3' | multi | ||
| bash, c, cpp, csharp, go, java, kotlin, perl, php, python, r, ruby, sqlite3 | | bash, c, cpp, csharp, go, java, kotlin, perl, php, python, r, ruby, sqlite3 | ||
| | | multi | ||
| | | | ||
|- | |- | ||
| html, javascript | | html, javascript | ||
| | | TBD | ||
| | | | ||
|- | |- | ||
| tex, latex | | tex, latex | ||
| | | TBD | ||
| | | | ||
|- | |- | ||
50번째 줄: | 51번째 줄: | ||
|} | |} | ||
==기타 옵션== | ===기타 옵션=== | ||
{| class='wikitable' | {| class='wikitable' | ||
! 옵션 !! 설명 !! 비고 | ! 옵션 !! 설명 !! 영역 !! 비고 | ||
|- | |- | ||
| | | hide || cell 숨김 || cell || multi/notebook | ||
|- | |- | ||
| | | filename || 파일명 지정 || cell || multi | ||
|- | |- | ||
| hideerr || output에서 stderr 숨김 || | | hideerr || output에서 stderr 숨김 || cell || | ||
|- | |- | ||
| outheight || output의 height 지정 || | | outheight || output의 height 지정 || cell || | ||
|- | |- | ||
| outmaxheight || output의 maxheight 지정 || | | outmaxheight || output의 maxheight 지정 || cell || | ||
|} | |} | ||
* PHP autoload | * PHP autoload | ||
79번째 줄: | 80번째 줄: | ||
} | } | ||
] | ] | ||
} | |||
</syntaxhighlight> | |||
==v2== | |||
===wikitext form=== | |||
<pre><nowiki> | |||
<syntaxhighlight lang='python' run> | |||
print('hello') | |||
print('world') | |||
</syntaxhighlight> | |||
<syntaxhighlight lang='python' asciinema run='1'> | |||
print('hello') | |||
print('world') | |||
</syntaxhighlight> | |||
<syntaxhighlight lang='text' run='1'> | |||
lorem | |||
ipsum | |||
</syntaxhighlight> | |||
</nowiki></pre> | |||
===raw form=== | |||
<syntaxhighlight lang='json'> | |||
{ | |||
"raws": [ | |||
{ | |||
"lang": "python", | |||
"type": "run", | |||
"group": null, | |||
"options": [], | |||
"source": "print('hello')\nprint('world')" | |||
}, | |||
{ | |||
"lang": "python", | |||
"type": "run", | |||
"group": "1", | |||
"options": ["asciinema"], | |||
"source": "print('hello')\nprint('world')" | |||
}, | |||
{ | |||
"lang": "text", | |||
"type": "run", | |||
"group": "1", | |||
"options": [], | |||
"source": "lorem\nipsum" | |||
} | |||
] | |||
} | |||
</syntaxhighlight> | |||
===frontend form=== | |||
<syntaxhighlight lang='json'> | |||
[ | |||
{ | |||
"cells": [ | |||
{ | |||
"type": "run", | |||
"group": "run-a1c3e", | |||
"lang": "python", | |||
"filename": "runbox.py", | |||
"source": "print('hello')\nprint('world')" | |||
} | |||
] | |||
}, | |||
{ | |||
"cells": [ | |||
{ | |||
"type": "run", | |||
"group": "run-1", | |||
"lang": "python", | |||
"filename": "runbox.py", | |||
"main": true, | |||
"source": "print('hello')\nprint('world')", | |||
"options": { | |||
"asciinema": false, | |||
"fold": false, | |||
"hideerr": false, | |||
"outheight": "auto" | |||
} | |||
}, | |||
{ | |||
"type": "run", | |||
"group": "run-1", | |||
"lang": "text", | |||
"filename": "noname1.txt", | |||
"source": "lorem\nipsum" | |||
} | |||
] | |||
} | |||
] | |||
</syntaxhighlight> | |||
===backend form=== | |||
<syntaxhighlight lang='json'> | |||
{ | |||
"apiVersion": "v1", | |||
"kind": "runnote", | |||
"metadata": { | |||
"name": "run-python-0-ac13eb57df" | |||
}, | |||
"spec": { | |||
"type": "run", // run | notebook | |||
"lang": "python", | |||
"asciinema": false | |||
}, | |||
"cells": [ | |||
{ | |||
"lang": "python", | |||
"filename": "runbox.py", | |||
"main": true, | |||
"source": [ | |||
"print('hello')", | |||
"print('world')" | |||
], | |||
"outputs": [] | |||
}, | |||
{ | |||
"lang": "text", | |||
"filename": "1.txt", | |||
"source": [ | |||
"lorem", | |||
"ipsum" | |||
], | |||
"outputs": [] | |||
} | |||
] | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |
2021년 12월 5일 (일) 18:53 기준 최신판
1 개요[ | ]
- runbox 스펙
2 v1[ | ]
2.1 box 유형[ | ]
box | 입력 | 출력 | lang 옵션 | box 단위 식별 | 비고 |
---|---|---|---|---|---|
run | 단일 cell | 단일 출력 | 단일 lang 지원, 필수 | 불필요 | - |
multi | 멀티 cell | 단일 출력 | 멀티 lang 지원, 생략가능 | multi={id} | 파일명 없으면 runbox.{lang} |
notebook | 멀티 cell | 멀티 출력 | 단일 lang 지원, 필수 | notebook={id} | 입력 출력 1:1 |
2.2 api 유형[ | ]
box | lang | api | 비고 |
---|---|---|---|
run | bash, c, cpp, csharp, go, java, kotlin, perl, php, python, r, ruby, sqlite3 | run | |
html, javascript | front | ||
tex, latex | tex | ||
multi | bash, c, cpp, csharp, go, java, kotlin, perl, php, python, r, ruby, sqlite3 | multi | |
html, javascript | TBD | ||
tex, latex | TBD | ||
notebook | python, r | notebook |
2.3 기타 옵션[ | ]
옵션 | 설명 | 영역 | 비고 |
---|---|---|---|
hide | cell 숨김 | cell | multi/notebook |
filename | 파일명 지정 | cell | multi |
hideerr | output에서 stderr 숨김 | cell | |
outheight | output의 height 지정 | cell | |
outmaxheight | output의 maxheight 지정 | cell |
- PHP autoload
json
Copy
{
"cells": [
{
"filename": "a.sh",
"source": "echo Hello World1",
"main": 1
},
{
"filename": "b.sh",
"source": "echo Hello World2"
}
]
}
3 v2[ | ]
3.1 wikitext form[ | ]
<syntaxhighlight lang='python' run> print('hello') print('world') </syntaxhighlight> <syntaxhighlight lang='python' asciinema run='1'> print('hello') print('world') </syntaxhighlight> <syntaxhighlight lang='text' run='1'> lorem ipsum </syntaxhighlight>
3.2 raw form[ | ]
json
Copy
{
"raws": [
{
"lang": "python",
"type": "run",
"group": null,
"options": [],
"source": "print('hello')\nprint('world')"
},
{
"lang": "python",
"type": "run",
"group": "1",
"options": ["asciinema"],
"source": "print('hello')\nprint('world')"
},
{
"lang": "text",
"type": "run",
"group": "1",
"options": [],
"source": "lorem\nipsum"
}
]
}
3.3 frontend form[ | ]
json
Copy
[
{
"cells": [
{
"type": "run",
"group": "run-a1c3e",
"lang": "python",
"filename": "runbox.py",
"source": "print('hello')\nprint('world')"
}
]
},
{
"cells": [
{
"type": "run",
"group": "run-1",
"lang": "python",
"filename": "runbox.py",
"main": true,
"source": "print('hello')\nprint('world')",
"options": {
"asciinema": false,
"fold": false,
"hideerr": false,
"outheight": "auto"
}
},
{
"type": "run",
"group": "run-1",
"lang": "text",
"filename": "noname1.txt",
"source": "lorem\nipsum"
}
]
}
]
3.4 backend form[ | ]
json
Copy
{
"apiVersion": "v1",
"kind": "runnote",
"metadata": {
"name": "run-python-0-ac13eb57df"
},
"spec": {
"type": "run", // run | notebook
"lang": "python",
"asciinema": false
},
"cells": [
{
"lang": "python",
"filename": "runbox.py",
"main": true,
"source": [
"print('hello')",
"print('world')"
],
"outputs": []
},
{
"lang": "text",
"filename": "1.txt",
"source": [
"lorem",
"ipsum"
],
"outputs": []
}
]
}
4 같이 보기[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.