A very basic regex-based Markdown parser. Supports the
following elements (and can be extended via Slimdown::add_rule()):
- Headers
- Links
- Bold
- Emphasis
- Deletions
| version: "3.9" # optional since v1.27.0 | |
| services: | |
| web: | |
| build: app/. | |
| ports: | |
| - "5000:5000" | |
| dns: | |
| - 8.8.8.8 | |
| links: |
| data "http" "myip" { | |
| url = "http://ipv4.icanhazip.com" | |
| } | |
| resource "aws_security_group" "msec" { | |
| ... | |
| from_port = 22 | |
| to_port = 22 | |
| protocol = "tcp" |
| terraform { | |
| required_version = ">= 0.12.0" | |
| required_providers { | |
| aws = { | |
| source = "hashicorp/aws" | |
| version = ">= 4.16.0" | |
| } | |
| } |