Documentation in Developer portal

Hi All,

Is it possible to upload video files in the developer portal.Does it support inline text ?

0 1 107
1 REPLY 1

For the Integrated portal, you can paste the embed code from e.g. YouTube/Vimeo into the page directly. You can also upload an MP4 video (or whichever format is playable on the web) to the Assets section, and then use the <video> element to show the video. Tip: embed the video as an image to get it's url, then delete the image embed.

<video width="320" height="240" controls>
  <source src="/files/SampleVideo_1280x720_1mb.mp4" type="video/mp4">
</video>

In a Drupal portal, use the Media module to handle that.