Browse Source

Added blinking example in the docs, and windows limitations in the readme

pull/44/head
Eugenio Parodi 4 years ago
parent
commit
4f2f8403bf
  1. 1
      README.md
  2. 8
      docs/MDNotes/Resources.md

1
README.md

@ -26,6 +26,7 @@ and inspired by a mix of [Qt5](https://www.riverbankcomputing.com/static/Docs/Py
- [TBD] Fullsize/Halfsize UTF-8 characters
## Limitations
- The native **Windows** porting is not ready yet but it works with [Cygwin](https://www.cygwin.com) or **WSL**.
- Only the key combinations forwarded by the terminal emulator used are detected (ALT,CTRL may not be handled)
## Try

8
docs/MDNotes/Resources.md

@ -19,6 +19,14 @@
#### Hyperlink
https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda
#### Blinking Text
```bash
echo -e "\033[5mBlinking Text\033[0m"
echo -e "\033[33;5mBlinking Text\033[0m"
echo -e "\033[33;7mBlinking Text\033[0m"
echo -e "\033[33;5;7mBlinking Text\033[0m"
```
## Sphinx Doc
#### Domains - docstring syntax
https://www.sphinx-doc.org/en/master/usage/restructuredtext/domains.html#directive-py-class

Loading…
Cancel
Save