@@ -68,6 +68,13 @@ class Page {
6868 this . rawPermissions = this . permissions
6969 this . rawLearningTracks = this . learningTracks
7070 this . rawIncludeGuides = this . includeGuides
71+ this . raw_product_video = this . product_video
72+
73+ if ( this . introLinks ) {
74+ this . introLinks . rawQuickstart = this . introLinks . quickstart
75+ this . introLinks . rawReference = this . introLinks . reference
76+ this . introLinks . rawOverview = this . introLinks . overview
77+ }
7178
7279 // a page should only be available in versions that its parent product is available in
7380 const versionsParentProductIsNotAvailableIn = getApplicableVersions ( this . versions , this . fullPath )
@@ -146,6 +153,13 @@ class Page {
146153 this . introPlainText = await renderContent ( this . rawIntro , context , { textOnly : true } )
147154 this . title = await renderContent ( this . rawTitle , context , { textOnly : true , encodeEntities : true } )
148155 this . shortTitle = await renderContent ( this . shortTitle , context , { textOnly : true , encodeEntities : true } )
156+ this . product_video = await renderContent ( this . raw_product_video , context , { textOnly : true } )
157+
158+ if ( this . introLinks ) {
159+ this . introLinks . quickstart = await renderContent ( this . introLinks . rawQuickstart , context , { textOnly : true } )
160+ this . introLinks . reference = await renderContent ( this . introLinks . rawReference , context , { textOnly : true } )
161+ this . introLinks . overview = await renderContent ( this . introLinks . rawOverview , context , { textOnly : true } )
162+ }
149163
150164 let markdown = this . mapTopic
151165 // get the map topic child articles from the siteTree
0 commit comments