Display HCL Data


🚧 - Under construction

🆕 functionality still in testing stage…​ These new features are still under construction 🚧

🚧 - Under construction '''

You can use PlantUML to visualize your HCL Configuration Languages.

To activate this feature, the diagram must: * begin with @starthcl keyword * end with @endhcl keyword.

@starthcl
{
key = "value"
}
@endhcl

The example taken from the hcl website.

@starthcl
{
  "io_mode": "async",
  "service": {
    "http": {
      "web_proxy": {
        "listen_addr": "127.0.0.1:8080",
        "process": {
          "main": {
            "command": ["/usr/local/bin/awesome-app", "server"]
          },
          "mgmt": {
            "command": ["/usr/local/bin/awesome-app", "mgmt"]
          },
        }
      }
    }
  }
}
@endhcl