diff options
author | Mikkel Jeppesen <2756925+Duckle29@users.noreply.github.com> | 2021-11-04 22:14:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-05 08:14:43 +1100 |
commit | fefd7fdc5145b677da7b0e1d75bab11eac9db605 (patch) | |
tree | e624f8f4ca57006f4ba9451b927b571663e1c180 /data/templates/avr/readme.md | |
parent | 6437045166cafab14f2fbe5fcae44f6b066adbc5 (diff) |
Refactor new-keyboard to be python3.7 compatible (#14707)
* Use copy_tree from distutils for python 3.7 support
* Bump python version in docs
* Changed new-keyboard to use printf-style format strings
* Use username for manunfacturer / maintainer
* Update lib/python/qmk/cli/new/keyboard.py
Co-authored-by: Zach White <skullydazed@drpepper.org>
Co-authored-by: Zach White <skullydazed@drpepper.org>
Diffstat (limited to 'data/templates/avr/readme.md')
-rw-r--r-- | data/templates/avr/readme.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/data/templates/avr/readme.md b/data/templates/avr/readme.md index b099ed726d..207850e065 100644 --- a/data/templates/avr/readme.md +++ b/data/templates/avr/readme.md @@ -1,20 +1,20 @@ -# %KEYBOARD% +# %(KEYBOARD)s -![%KEYBOARD%](imgur.com image replace me!) +![%(KEYBOARD)s](imgur.com image replace me!) *A short description of the keyboard/project* -* Keyboard Maintainer: [%YOUR_NAME%](https://github.com/yourusername) +* Keyboard Maintainer: [%(YOUR_NAME)s](https://github.com/%(USER_NAME)s) * Hardware Supported: *The PCBs, controllers supported* * Hardware Availability: *Links to where you can find this hardware* Make example for this keyboard (after setting up your build environment): - make %KEYBOARD%:default + make %(KEYBOARD)s:default Flashing example for this keyboard: - make %KEYBOARD%:default:flash + make %(KEYBOARD)s:default:flash See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). |