您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
197B

  1. collapse_html_chr <- function(x) {
  2. x <- paste(x, collapse = "\n")
  3. gsub("\\s*\n\\s*", "", x)
  4. }
  5. expect_html_chr <- function(x, y) {
  6. expect_equal(collapse_html_chr(x), collapse_html_chr(y))
  7. }