File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/generators/legacy-html/utils Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ const buildMetadataElement = node => {
110110
111111 // Creates the added in element with the added in version
112112 const addedinElement = createElement ( 'span' , [
113- createElement ( 'b' , ' Added In : ') ,
113+ ' Added in : ',
114114 addedIn ,
115115 ] ) ;
116116
@@ -126,7 +126,7 @@ const buildMetadataElement = node => {
126126
127127 // Creates the deprecated in element with the deprecated in version
128128 const deprecatedInElement = createElement ( 'span' , [
129- createElement ( 'b' , ' Deprecated In : ') ,
129+ ' Deprecated in : ',
130130 deprecatedIn ,
131131 ] ) ;
132132
@@ -142,7 +142,7 @@ const buildMetadataElement = node => {
142142
143143 // Creates the removed in element with the removed in version
144144 const removedInElement = createElement ( 'span' , [
145- createElement ( 'b' , ' Removed In : ') ,
145+ ' Removed in : ',
146146 removedIn ,
147147 ] ) ;
148148
You can’t perform that action at this time.
0 commit comments