html5 (version 0.1.0)

input: Generate HTML tag for element input

Description

Generate HTML tag for element input

Usage

input(
  accept = NULL,
  accesskey = NULL,
  alt = NULL,
  autocapitalize = NULL,
  autocomplete = NULL,
  autofocus = NULL,
  capture = NULL,
  checked = NULL,
  class = NULL,
  contenteditable = NULL,
  dir = NULL,
  dirname = NULL,
  disabled = NULL,
  draggable = NULL,
  form = NULL,
  formaction = NULL,
  formenctype = NULL,
  formmethod = NULL,
  formnovalidate = NULL,
  formtarget = NULL,
  height = NULL,
  hidden = NULL,
  id = NULL,
  inputmode = NULL,
  is = NULL,
  itemid = NULL,
  itemprop = NULL,
  itemref = NULL,
  itemscope = NULL,
  itemtype = NULL,
  lang = NULL,
  list = NULL,
  max = NULL,
  maxlength = NULL,
  min = NULL,
  minlength = NULL,
  multiple = NULL,
  name = NULL,
  part = NULL,
  pattern = NULL,
  placeholder = NULL,
  readonly = NULL,
  required = NULL,
  size = NULL,
  slot = NULL,
  spellcheck = NULL,
  src = NULL,
  step = NULL,
  style = NULL,
  tabindex = NULL,
  title = NULL,
  type = NULL,
  value = NULL,
  width = NULL,
  custom_attr = NULL
)

Arguments

accept

A string of permitted content for this HTML attribute. 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.

alt

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.

autocomplete

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

autofocus

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

capture

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

checked

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.

dir

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

dirname

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

disabled

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.

form

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

formaction

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

formenctype

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

formmethod

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

formnovalidate

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

formtarget

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.

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.

list

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

max

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

maxlength

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

min

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

minlength

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

multiple

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

name

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.

pattern

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

placeholder

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

readonly

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

required

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

size

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.

step

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.

type

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

value

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 {
input(class = "test")
# }

Run the code above in your browser using DataLab