This commit is contained in:
Q
2023-09-27 19:51:55 +03:00
parent 4de2f56b29
commit 07d6d5242c
9 changed files with 2134 additions and 0 deletions

49
example_snippets.txt Normal file
View File

@@ -0,0 +1,49 @@
# 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 {WORK.TABLE.r()}
```
# Bash
for files
```bash
for e in *; do echo "$e"; done
```