Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months ago
JSON representation
R Package - Quick Spellcheck Addin for RStudio
- Host: GitHub
- URL: https://github.com/nevrome/wellspell.addin
- Owner: nevrome
- License: mit
- Created: 2018-11-27T21:44:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-07T13:49:39.000Z (over 3 years ago)
- Last Synced: 2024-07-28T09:34:48.970Z (3 months ago)
- Topics: r, rstudio-addin, spellcheck
- Language: R
- Homepage:
- Size: 1000 KB
- Stars: 21
- Watchers: 3
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
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")
}
)
```