mdbook/tests/testsuite/rendering/hidelines/src/hide-lines.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
301 B
Markdown
Raw Normal View History

# Hide Lines
```python
~hidden()
nothidden():
~ hidden()
~hidden()
nothidden()
```
```python,hidelines=!!!
!!!hidden()
nothidden():
!!! hidden()
!!!hidden()
nothidden()
```
```rust
#![allow(something)]
#
#hidden();
# hidden();
## not_hidden();
#[not_hidden]
not_hidden();
```