#' Adds two to any number
#'
#' We _can_ use markdown in roxy documentation.
#' That is **very** handy. It's easy to indicate `functions()`.
#' Markdown tables, lists are also possible.
#' See more about the markdown markup at the
#' [Commonmark web site](http://commonmark.org/help).
#' We can easily add images also, here is an irrelvant Numbat:
#' 
#'
#' @param x an integer or double; any number
#'
#' @return a number
#' @export
#'
#' @examples
#' plus_two(1)
#'
plus_two <- function(x) {
x + 2
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.