File: markdown_reader.pmd

package info (click to toggle)
python-pweave 0.30.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,068 kB
  • sloc: python: 30,281; makefile: 167
file content (35 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (2)
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

`````python
from pylab import *
x = linspace(0, 2*pi, 1000)
`````

```python
x = list(range(20))
print(x)
```

```{python, echo=False}
print(x)
```

```{python}
print("Hello")
```

```{.python, wrap = True }
print("pweave " * 20)
```
Some text in between

```{python, wrap = False}
print("pweave " * 20)
```

```{python, evaluate = False}
print(x)
```

```{python, results = "markdown"}
print("**Bold stuff**")
```