https://github.com/cran/pkgdown
Raw File
Tip revision: 734352c469f19cb270b01aa86f91117117e69d29 authored by Hadley Wickham on 12 September 2020, 04:50:26 UTC
version 1.6.1
Tip revision: 734352c
build-home-community.R
has_contributing <- function(path = ".") {
  file_exists(path(path, 'CONTRIBUTING.md')) ||
    file_exists(path(path, '.github', 'CONTRIBUTING.md'))
}

has_coc <- function(path = ".") {
  file_exists(path(path, 'CODE_OF_CONDUCT.md')) ||
    file_exists(path(path, '.github', 'CODE_OF_CONDUCT.md'))
}

data_home_sidebar_community <- function (pkg){

  pkg <- as_pkgdown(pkg)

  links <- NULL

  if (has_contributing(pkg$src_path)) {
    links <- c(
      links,
      '<a href="CONTRIBUTING.html">Contributing guide</a>'
    )
  }

  if (has_coc(pkg$src_path)) {
    links <- c(
      links,
      '<a href="CODE_OF_CONDUCT.html">Code of conduct</a>'
    )
  }


  if (is.null(links)) {
    return("")
  }

  sidebar_section("Community", links)

}
back to top