-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
51 lines (51 loc) · 1.54 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"id": "python/apua-gen",
"name": "solve.ws",
"authors": ["Apua"],
"license": "none",
"languages": ["Python"],
"tags": ["mapping", "programs"],
"date": "2016-12-21 03:42:11 +0800",
"spec_version": "-",
"source": [
"https://gist.github.com/apua/8d565a8a8365a1399b8fae1664b43d65",
"https://www.ptt.cc/bbs/Programming/M.1478792208.A.EFC.html"
],
"submodules": [{ "path": "solve", "url": "https://gist.github.com/apua/8d565a8a8365a1399b8fae1664b43d65" }],
"whitespace": { "extension": "ws" },
"mappings": [
{ "space": "S", "tab": "T", "lf": "L", "line_comment": "#", "extension": "ws.orig" },
{
"space": "\u001b[47m \u001b[m",
"tab": "\u001b[43m \u001b[m",
"lf": "\u001b[44m \u001b[m\n",
"line_comment": "#"
},
{ "space": "▇", "tab": "█", "lf": "\n", "line_comment": "#" }
],
"programs": [
{
"path": "solve.ws.orig",
"generated": "solve.ws",
"aux": ["algorithm.py", "reduced.py"],
"spec_version": "0.2",
"generate": "python3 gen_ws.py solve.ws.orig -w"
}
],
"commands": [
{
"type": "mapping",
"bin": "gen_ws.py",
"usage": "<file>.ws.orig (-c | -b | -w)",
"input": "<file>.ws.orig",
"output": "<file>.ws",
"options": [
{ "short": "c", "desc": "color output type" },
{ "short": "b", "desc": "bbs output type" },
{ "short": "w", "desc": "whitespace output type" }
],
"option_parse": "manual"
}
],
"notes": "Whitespace solution to challenge, with equivalent Python programs"
}