Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nevrome/wellspell.addin

R Package - Quick Spellcheck Addin for RStudio
https://github.com/nevrome/wellspell.addin

r rstudio-addin spellcheck

Last synced: about 2 months ago
JSON representation

R Package - Quick Spellcheck Addin for RStudio

Awesome Lists containing this project

README

        

---
output: github_document
editor_options:
chunk_output_type: console
---

```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```

[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![Travis-CI Build Status](https://travis-ci.org/nevrome/wellspell.addin.svg?branch=master)](https://travis-ci.org/nevrome/wellspell.addin) [![Coverage Status](https://img.shields.io/codecov/c/github/nevrome/wellspell.addin/master.svg)](https://codecov.io/github/nevrome/wellspell.addin?branch=master)

# wellspell.addin

![](https://github.com/nevrome/wellspell.addin/raw/master/inst/gif/mastake.gif)

```{r, echo=FALSE, results='asis'}
zz <- textConnection("rd", "w")
tools::Rd2txt("man/wellspell.Rd", zz)
close(zz)

rd <- gsub("\\*", "**", rd)
rd <- gsub("\\'", "`", rd)
rd <- gsub("\\'", "`", rd)
rd <- gsub(" •", " -", rd)
rd <- gsub(" ", "", rd)

purrr::walk(
rd[4:(grep("_\bU_\bs_\ba_\bg_\be:", rd) - 1)],
function(x) {
cat(x)
cat(" \n")
}
)
```