1% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/repr_function.r
3\name{repr_*.function}
4\alias{repr_*.function}
5\alias{repr_html.function}
6\alias{repr_latex.function}
7\alias{repr_markdown.function}
8\title{Representations of functions}
9\usage{
10\method{repr_html}{`function`}(obj, highlight = getOption("repr.function.highlight"), ...)
11
12\method{repr_latex}{`function`}(obj, highlight = getOption("repr.function.highlight"), ...)
13
14\method{repr_markdown}{`function`}(obj, fenced = TRUE, ...)
15}
16\arguments{
17\item{obj}{Function to create a representation for}
18
19\item{highlight}{Should code highlighting be performed}
20
21\item{...}{ignored}
22
23\item{fenced}{Should a fenced code block instead of an indented one be used?}
24}
25\description{
26Representations of functions
27}
28