Reformatting for fontio module

This commit is contained in:
Alec Delaney 2022-05-13 11:14:48 -04:00
parent b035277e15
commit e30d510192
1 changed files with 6 additions and 4 deletions

View File

@ -33,14 +33,16 @@
#include "shared-bindings/fontio/BuiltinFont.h"
#include "shared-bindings/fontio/Glyph.h"
//| """Core font related data structures"""
//| """Core font related data structures
//|
//| .. note:: This library is intended only for low-level usage. For working with
//| fonts in CircuitPython see the
//| `adafruit_bitmap_font library <https://github.com/adafruit/Adafruit_CircuitPython_Bitmap_Font>`_.
//| For infromation on creating custom fonts for use in CircuitPython, see
//| fonts in CircuitPython see the `adafruit_bitmap_font library
//| <https://github.com/adafruit/Adafruit_CircuitPython_Bitmap_Font>`_.
//| For information on creating custom fonts for use in CircuitPython, see
//| `this Learn guide <https://learn.adafruit.com/custom-fonts-for-pyportal-circuitpython-display>`_
//|
//| """
//|
STATIC const mp_rom_map_elem_t fontio_module_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_fontio) },