File tree 1 file changed +3
-3
lines changed
src/generators/legacy-html/utils
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ const buildMetadataElement = node => {
110
110
111
111
// Creates the added in element with the added in version
112
112
const addedinElement = createElement ( 'span' , [
113
- createElement ( 'b' , ' Added In : ') ,
113
+ ' Added in : ',
114
114
addedIn ,
115
115
] ) ;
116
116
@@ -126,7 +126,7 @@ const buildMetadataElement = node => {
126
126
127
127
// Creates the deprecated in element with the deprecated in version
128
128
const deprecatedInElement = createElement ( 'span' , [
129
- createElement ( 'b' , ' Deprecated In : ') ,
129
+ ' Deprecated in : ',
130
130
deprecatedIn ,
131
131
] ) ;
132
132
@@ -142,7 +142,7 @@ const buildMetadataElement = node => {
142
142
143
143
// Creates the removed in element with the removed in version
144
144
const removedInElement = createElement ( 'span' , [
145
- createElement ( 'b' , ' Removed In : ') ,
145
+ ' Removed in : ',
146
146
removedIn ,
147
147
] ) ;
148
148
You can’t perform that action at this time.
0 commit comments