link
Generate HTML tag for element link
Generate HTML tag for element link
Usage
link(
accesskey = NULL,
as = NULL,
autocapitalize = NULL,
class = NULL,
contenteditable = NULL,
crossorigin = NULL,
dir = NULL,
disabled = NULL,
draggable = NULL,
hidden = NULL,
href = NULL,
hreflang = NULL,
id = NULL,
imagesizes = NULL,
imagesrcset = NULL,
inputmode = NULL,
integrity = NULL,
is = NULL,
itemid = NULL,
itemprop = NULL,
itemref = NULL,
itemscope = NULL,
itemtype = NULL,
lang = NULL,
media = NULL,
part = NULL,
prefetch = NULL,
referrerpolicy = NULL,
rel = NULL,
sizes = NULL,
slot = NULL,
spellcheck = NULL,
style = NULL,
tabindex = NULL,
title = NULL,
type = NULL,
custom_attr = NULL
)
Arguments
- accesskey
A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.
- as
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.
- 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.
- crossorigin
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.
- 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.
- hidden
A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.
- href
A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.
- hreflang
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.
- imagesizes
A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.
- imagesrcset
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.
- integrity
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.
- media
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.
- prefetch
A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.
- referrerpolicy
A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.
- rel
A string of permitted content for this HTML attribute. The user is responsible for determining what is permissible.
- sizes
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.
- 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.
- 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
# NOT RUN {
link(class = "test")
# }