Escape pipe character when generating Markdown (#114)

This commit is contained in:
Khosrow Moossavi
2019-06-28 13:19:08 -04:00
committed by Martin Etmajer
parent 2c18dae748
commit 9f63bdf484
19 changed files with 127 additions and 4 deletions

View File

@@ -51,3 +51,9 @@ variable "list-1" {
// A variable with underscores.
variable "input_with_underscores" {}
// A variable with pipe in the description
variable "input-with-pipe" {
description = "It includes v1 | v2 | v3"
default = "v1"
}