A very basic regex-based Markdown parser. Supports the
following elements (and can be extended via Slimdown::add_rule()):
- Headers
- Links
- Bold
| name: Build Artifacts | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: |
| version: "3.7" | |
| services: | |
| ## Follow install instructions below | |
| ## InfluxDB | |
| # Create config file: | |
| # mkdir ${USERDIR}/docker/influxdb | |
| # docker run --rm influxdb influxd config > ${USERDIR}/docker/influxdb/influxdb.conf | |
| # Consider adding a database (optional) |
| #include "requestmanager.h" | |
| /// | |
| /// RequestManager constructor | |
| /// | |
| /// Description: sets up a network access manager that | |
| /// abstract the HTTP/TCP protocol | |
| RequestManager::RequestManager(QObject *parent) : QObject(parent) | |
| { |
| var my_element = document.getElementById('my-element'); | |
| //-- Returns true/false | |
| my_element.isVisible(my_element); |
A very basic regex-based Markdown parser. Supports the
following elements (and can be extended via Slimdown::add_rule()):