File: test.md

package info (click to toggle)
sphinx-mdinclude 0.6.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: python: 1,242; makefile: 53; sh: 8
file content (21 lines) | stat: -rw-r--r-- 357 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Title

## SubTitle

**content**

## サブタイトル

[A link to GitHub](http://github.com/)

This is `$E = mc^2$` inline math.

This first math `$x^2$` in this line will render. This one `$z^3$` should as well.

Also within parentheses (`$x^2$`) and (`$z^3$`).

```python
class Foo:
    def bar(self, arg: str = "") -> int:
        return len(arg)
```