@@ -65,7 +65,7 @@ type nestedType struct {
65
65
func writeAttribute (w io.Writer , path []string , att * tfjson.SchemaAttribute , group groupFilter ) ([]nestedType , error ) {
66
66
name := path [len (path )- 1 ]
67
67
68
- _ , err := io .WriteString (w , "- ** " + name + "** " )
68
+ _ , err := io .WriteString (w , "- ` " + name + "` " )
69
69
if err != nil {
70
70
return nil , err
71
71
}
@@ -142,7 +142,7 @@ func writeAttribute(w io.Writer, path []string, att *tfjson.SchemaAttribute, gro
142
142
func writeBlockType (w io.Writer , path []string , block * tfjson.SchemaBlockType ) ([]nestedType , error ) {
143
143
name := path [len (path )- 1 ]
144
144
145
- _ , err := io .WriteString (w , "- ** " + name + "** " )
145
+ _ , err := io .WriteString (w , "- ` " + name + "` " )
146
146
if err != nil {
147
147
return nil , err
148
148
}
@@ -367,7 +367,7 @@ func writeNestedTypes(w io.Writer, nestedTypes []nestedType) error {
367
367
func writeObjectAttribute (w io.Writer , path []string , att cty.Type , group groupFilter ) ([]nestedType , error ) {
368
368
name := path [len (path )- 1 ]
369
369
370
- _ , err := io .WriteString (w , "- ** " + name + "** (" )
370
+ _ , err := io .WriteString (w , "- ` " + name + "` (" )
371
371
if err != nil {
372
372
return nil , err
373
373
}
0 commit comments