diff --git a/schemamd/render.go b/schemamd/render.go index 0bd0dc91..4ec594f2 100644 --- a/schemamd/render.go +++ b/schemamd/render.go @@ -52,7 +52,7 @@ type nestedType struct { func writeAttribute(w io.Writer, path []string, att *tfjson.SchemaAttribute, group groupFilter) ([]nestedType, error) { name := path[len(path)-1] - _, err := io.WriteString(w, "- **"+name+"** ") + _, err := io.WriteString(w, "- `"+name+"` ") if err != nil { return nil, err } @@ -112,7 +112,7 @@ func writeAttribute(w io.Writer, path []string, att *tfjson.SchemaAttribute, gro func writeBlockType(w io.Writer, path []string, block *tfjson.SchemaBlockType) ([]nestedType, error) { name := path[len(path)-1] - _, err := io.WriteString(w, "- **"+name+"** ") + _, err := io.WriteString(w, "- `"+name+"` ") if err != nil { return nil, err } @@ -270,7 +270,7 @@ func writeNestedTypes(w io.Writer, nestedTypes []nestedType) error { func writeObjectAttribute(w io.Writer, path []string, att cty.Type, group groupFilter) ([]nestedType, error) { name := path[len(path)-1] - _, err := io.WriteString(w, "- **"+name+"** (") + _, err := io.WriteString(w, "- `"+name+"` (") if err != nil { return nil, err }