Package 'roblog'

Title: rOpenSci's blog guidance
Description: It provides templates for roweb2 blogging and help for a GitHub forking workflow.
Authors: Maëlle Salmon [aut, cre] , Stefanie Butland [aut], rOpenSci [fnd] (https://ropensci.org/), Amanda Dobbyn [ctb], Christophe Dervieux [ctb], Romain LESUR [ctb]
Maintainer: Maëlle Salmon <[email protected]>
License: MIT + file LICENSE
Version: 0.1.0
Built: 2024-08-29 23:16:03 UTC
Source: https://github.com/ropensci-org/roblog

Help Index


Create newsletter content for Sendgrid

Description

Create newsletter content for Sendgrid

Usage

create_newsletter_content()

Value

Text copied to clipboard to be pasted into Sendgrid


Create a new rOpenSci author file

Description

Create a new author file, in RStudio.

Usage

ro_blog_post_author()

Details

Call it via the add-in or directly or get the templates online.

In any case, an internet connection is required as templates are downloaded fresh from their source

ro_blog_post_author() creates Markdown files, RStudio might warn you against saving them as ".md" but ignore that.


Check URLs in Markdown post

Description

Check URLs in Markdown post

Usage

ro_check_urls(path = NULL)

Arguments

path

Path to the Markdown post (not source Rmd!) – if NULL, and in RStudio, roblog will default to the md resulting from the active Rmd.

Examples

## Not run: 
path <- system.file(file.path("examples", "bad-no-alt.md"),
  package = "roblog"
)
ro_check_urls(path)

## End(Not run)

Lint Markdown post for rOpenSci blog

Description

Lint Markdown post for rOpenSci blog

Usage

ro_lint_md(path = NULL)

Arguments

path

Path to the Markdown post (not source Rmd!) – if NULL, and in RStudio, roblog will default to the md resulting from the active Rmd.

Examples

## Not run: 
path <- system.file(
  file.path("examples", "bad-no-alt.md"),
  package = "roblog"
)

## End(Not run)