-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from reproio/support-code-fence-in-code-fence
support code block in code block
- Loading branch information
Showing
14 changed files
with
99 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### 0 to add, 1 to change, 0 to destroy, 0 to replace. | ||
- change | ||
- env_variable.test1 | ||
<details><summary>Change details</summary> | ||
|
||
````````diff | ||
# env_variable.test1 will be updated in-place | ||
@@ -7,7 +7,7 @@ | ||
", | ||
"name": " | ||
``` | ||
- test1 | ||
+ test2 | ||
``` | ||
|
||
", | ||
```````` | ||
|
||
</details> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
terraform { | ||
required_providers { | ||
env = { | ||
source = "tchupp/env" | ||
version = "0.0.2" | ||
} | ||
} | ||
} | ||
|
||
provider "env" { | ||
# Configuration options | ||
} | ||
|
||
resource "env_variable" "test1" { | ||
name = <<EOF | ||
``` | ||
test2 | ||
``` | ||
EOF | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"format_version":"1.0","terraform_version":"1.1.8","planned_values":{"root_module":{"resources":[{"address":"env_variable.test1","mode":"managed","type":"env_variable","name":"test1","provider_name":"registry.terraform.io/tchupp/env","schema_version":0,"values":{"id":"\n```\ntest1\n```\n\n","name":"\n```\ntest2\n```\n\n","value":""},"sensitive_values":{}}]}},"resource_changes":[{"address":"env_variable.test1","mode":"managed","type":"env_variable","name":"test1","provider_name":"registry.terraform.io/tchupp/env","change":{"actions":["update"],"before":{"id":"\n```\ntest1\n```\n\n","name":"\n```\ntest1\n```\n\n","value":""},"after":{"id":"\n```\ntest1\n```\n\n","name":"\n```\ntest2\n```\n\n","value":""},"after_unknown":{},"before_sensitive":{"value":true},"after_sensitive":{"value":true}}}],"prior_state":{"format_version":"1.0","terraform_version":"1.1.8","values":{"root_module":{"resources":[{"address":"env_variable.test1","mode":"managed","type":"env_variable","name":"test1","provider_name":"registry.terraform.io/tchupp/env","schema_version":0,"values":{"id":"\n```\ntest1\n```\n\n","name":"\n```\ntest1\n```\n\n","value":""},"sensitive_values":{}}]}}},"configuration":{"provider_config":{"env":{"name":"env","version_constraint":"0.0.2"}},"root_module":{"resources":[{"address":"env_variable.test1","mode":"managed","type":"env_variable","name":"test1","provider_config_key":"env","expressions":{"name":{"constant_value":"\n```\ntest2\n```\n\n"}},"schema_version":0}]}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"version": 4, | ||
"terraform_version": "1.1.8", | ||
"serial": 1, | ||
"lineage": "562fda8d-ad02-efe3-9568-b6dd139ef8f9", | ||
"outputs": {}, | ||
"resources": [ | ||
{ | ||
"mode": "managed", | ||
"type": "env_variable", | ||
"name": "test1", | ||
"provider": "provider[\"registry.terraform.io/tchupp/env\"]", | ||
"instances": [ | ||
{ | ||
"schema_version": 0, | ||
"attributes": { | ||
"id": "\n```\ntest1\n```\n\n", | ||
"name": "\n```\ntest1\n```\n\n", | ||
"value": "" | ||
}, | ||
"sensitive_attributes": [], | ||
"private": "bnVsbA==" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters