This lookatme extension adds QR code rendering capabilities to the code blocks.
pip install lookatme.contrib.qrcode
Add the qrcode into the extensions array in the slide YAML header:
---
title: A title
author: Me
date: 2019-12-04
extensions:
- qrcode
---
With the extension installed and declared in the YAML header, use it in your markdown like so:
# A Slide
```qrcode
https://github.com/d0c-s4vage/lookatme.contrib.qrcode
```
An extended mode is also available that lets multiple columns of QR codes be rendered side-by-side:
# A Slide
```qrcode-ex
columns:
- data: https://github.com/d0c-s4vage/lookatme
caption: "**lookatme** project"
- data: https://github.com/d0c-s4vage/lookatme.contrib.qrcode
caption: Text `lookatme.contrib.qrcode`
```