Files
terraform-docs/template/testdata/table/complex-html.markdown.expected
christophe.vandekerchove 78e94da786 fix: Replace <br> with <br /> for markdown syntax
<br /> provides additional support for XHTML without breaking
compatibility with HTML. This can be useful when trying to publish
documentation generated by terraform-docs to XHTML based solutions

Signed-off-by: christophe.vandekerchove <christophe.vandekerchove@scalepad.com>
2024-07-05 14:30:50 -04:00

1 line
770 B
Plaintext

Usage:<br/><br/>Example of 'foo\_bar' module in `foo_bar.tf`.<br/><br/>- list item 1<br/>- list item 2<br/><br/>Even inline **formatting** in _here_ is possible.<br/>and some [link](https://domain.com/)<br/><br/>* list item 3<br/>* list item 4<pre>module "foo_bar" {<br/> source = "github.com/foo/bar"<br/><br/> id = "1234567890"<br/> name = "baz"<br/><br/> zones = ["us-east-1", "us-west-1"]<br/><br/> tags = {<br/> Name = "baz"<br/> Created-By = "first.last@email.com"<br/> Date-Created = "20180101"<br/> }<br/>}</pre>Here is some trailing text after code block,<br/>followed by another line of text.<br/><br/>\| Name \| Description \|<br/>\|------\|-----------------\|<br/>\| Foo \| Foo description \|<br/>\| Bar \| Bar description \|