-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathspecification.ju.py
262 lines (207 loc) · 3.46 KB
/
specification.ju.py
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# ---
# jupyter:
# jupytext:
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# kernelspec:
# display_name: Python 3 (ipykernel)
# language: python
# name: python3
# ---
# %% [md]
"""
# Neopyter specifications
> The source of this notebook is `doc/specification.ju.py`
This is a example file describe the specification of `.ju.py`. We will introduce some specifications and notices you need to learn.
The main format supported is the [percent](https://jupytext.readthedocs.io/en/latest/formats-scripts.html) format: cells can have
* title
* a cell type (`code`, `markdown`, `md` or `raw`, omitted for code cells)
* and cell metadata
Here is a example of cell separator(the percent format)
```python
# %% Optional title [cell type] key="value"
```
"""
# %% [md]
"""
## Code Cell
These are all legitimate code cells:
* Default cell separtor
```python
# %%
```
* Cell separtor with title
```python
# %% title
```
E.g.
"""
# %% import some module
import time
# %%
def say(msg):
print(msg)
# %% [md]
"""
### Cell Magic
`Cell magic` is not a standard of percent format, but for convenience, we support multiple formats
<table width="90%">
<tr>
<td> Code </td> <td> Notebook </td> <td> Description </td>
</tr>
<tr>
<td>
```python
# %%
# %%js
'''
console.log("Hello")
console.log("Neopyter")
'''
```
</td>
<td>

</td>
<td>
If the cell contains only one string, we extract the string as the content of the cell
</td>
</tr>
<tr>
<td>
```python
# %%
# %%js
# console.log("Hello")
# console.log("Neopyter")
```
</td>
<td>

</td>
<td>
If the cell contains only multiple comments, and all comments are start with `# `, we extract the comment as cell content.
</td>
</tr>
<tr>
<td>
```python
# %%
# %%time
a = 1 + 2
time.sleep(1)
```
</td>
<td>

</td>
<td>
Otherwise, we keep it as cell content.
</td>
</tr>
<td>
</table>
"""
# %%
# %%js
"""
console.log('Hello')
console.log("Neopyter")
"""
# %%
# %%js
# console.log('Hello')
# console.log("Neopyter")
# %%
# %%time
time.sleep(1)
# %% [md]
"""
### Line Magic
We support line magic, you can write line magic with prefix `# `, e.g.
```python
# %time time.sleep(1)
```
"""
# %%
# %time time.sleep(1)
# %% [md]
"""
## Markdown Cell
Neopyter support markdown cell to, `md` will be treated as `markdown`. We support multiple formats too.
<table width="90%">
<tr>
<td> Code </td> <td> Notebook </td> <td> Description </td>
</tr>
<tr>
<td>
```python
# %% [md]
'''
### Heading
- list item 1
- list item 2
'''
```
</td>
<td>

</td>
<td>
If the cell contains only one string, we extract the string as the content of the cell
</td>
</tr>
<tr>
<td>
```python
# %% [markdown]
# ### Heading
# - list item 1
# - list item 2
```
</td>
<td>

</td>
<td>
If the cell contains only multiple comments, and all comments are start with `# `, we extract the comment as cell content.
</td>
</tr>
<tr>
<td>
```python
# %% [markdown]
### Heading
print("Hello")
```
</td>
<td>

</td>
<td>
Otherwise, we keep it as cell content. Although this may cause some problems
</td>
</tr>
<td>
</table>
"""
# %% [md]
"""
### Heading
- list item 1
- list item 2
"""
# %% [markdown]
# ### Heading
# - list item 1
# - list item 2
# %% [markdown]
### Heading
print("Hello")
# %% [md]
"""
## Raw Cell
Raw cell fellow the same standard with markdown
"""