Nothing
library(testthat)
library(gluedown)
library(rvest)
library(glue)
test_that("md_autolink creates a <a> tag (ex. 602)", {
# https://github.github.com/gfm/#example-602
url <- "http://foo.bar.baz"
md_autolink(url) %>%
md_convert() %>%
read_html() %>%
html_node("a") %>%
html_attr("href") %>%
expect_equal(url)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.