Files
mdsnippets/example_snippets.txt
2023-09-27 19:56:53 +03:00

50 lines
510 B
Plaintext

# Help
Usage
```plaintext
Search at top^
Use Tab or click item to show code.
Code is selected automatically, just ctrl-c or copy.
Code is stored in a markdown file: example_snippets.txt
snippets syntax:
======
# header
item1
` ``Language
Language code
` ``
^ note no space in between in real life
item2
` ``bash
for e in *; do loop $e;done
` ``
======
```
# Python
Hello
```python
print("HELLO")
```
sql
```SQL
SELECT
*
FROM TABLE
```
# Bash
for files
```bash
for e in *; do echo "$e"; done
```