How to use the pcbdraw.mdrenderer.MdRenderer function in PcbDraw

To help you get started, we’ve selected a few PcbDraw examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github yaqwsx / PcbDraw / pcbdraw / mdrenderer.py View on Github external
def list(self, text, ordered=True):
    r = ''
    while text:
      text, type, t = MdRenderer.get_block(text)
      if type == 'l':
        r += (ordered and ('# ' + t) or ('* ' + t)) + '\n'
    return r

PcbDraw

Utility to produce nice looking drawings of KiCAD boards

MIT
Latest version published 2 years ago

Package Health Score

49 / 100
Full package analysis

Similar packages