html5 (version 0.1.0)

video: Generate HTML tag for element video

Description

Generate HTML tag for element video

Usage

video(
  ...,
  accesskey = NULL,
  autocapitalize = NULL,
  autoPictureInPicture = NULL,
  autoplay = NULL,
  buffered = NULL,
  class = NULL,
  contenteditable = NULL,
  controls = NULL,
  controlslist = NULL,
  crossorigin = NULL,
  currentTime = NULL,
  dir = NULL,
  disablePictureInPicture = NULL,
  disableRemotePlayback = NULL,
  draggable = NULL,
  duration = NULL,
  height = NULL,
  hidden = NULL,
  id = NULL,
  inputmode = NULL,
  intrinsicsize = NULL,
  is = NULL,
  itemid = NULL,
  itemprop = NULL,
  itemref = NULL,
  itemscope = NULL,
  itemtype = NULL,
  lang = NULL,
  loop = NULL,
  muted = NULL,
  part = NULL,
  playsinline = NULL,
  poster = NULL,
  preload = NULL,
  slot = NULL,
  spellcheck = NULL,
  src = NULL,
  style = NULL,
  tabindex = NULL,
  title = NULL,
  width = NULL,
  custom_attr = NULL
)

Arguments

...

A string or strings of permitted content for this HTML element tag. The user is responsible for determining what is permissible.

accesskey

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

autocapitalize

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

autoPictureInPicture

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

autoplay

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

buffered

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

class

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

contenteditable

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

controls

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

controlslist

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

crossorigin

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

currentTime

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

dir

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

disablePictureInPicture

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

disableRemotePlayback

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

draggable

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

duration

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

height

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

hidden

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

id

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

inputmode

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

intrinsicsize

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

is

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

itemid

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

itemprop

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

itemref

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

itemscope

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

itemtype

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

lang

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

loop

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

muted

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

part

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

playsinline

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

poster

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

preload

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

slot

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

spellcheck

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

src

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

style

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

tabindex

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

title

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

width

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

custom_attr

A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.

Value

A HTML tag string.

Examples

Run this code
# NOT RUN {
video(class = "test", "Example")
# }

Run the code above in your browser using DataCamp Workspace