Nothing
library(testthat)
library(gluedown)
library(stringr)
library(rvest)
library(glue)
test_that("md_code creates a <code> tag (ex. 338)", {
# https://github.github.com/gfm/#example-338
md_code("foo") %>%
md_convert() %>%
read_html() %>%
html_node("code") %>%
html_text() %>%
expect_equal("foo")
})
test_that("md_code double backticks if code contains backtick (ex. 339)", {
# https://github.github.com/gfm/#example-339
md_code("foo ` bar") %>%
md_convert() %>%
read_html() %>%
html_node("code") %>%
html_text() %>%
expect_equal("foo ` bar")
})
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.