You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
4.2 KiB

4 years ago
[![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)
[![Signed
by](https://img.shields.io/badge/Keybase-Verified-brightgreen.svg)](https://keybase.io/hrbrmstr)
![Signed commit
4 years ago
%](https://img.shields.io/badge/Signed_Commits-89%25-lightgrey.svg)
[![R-CMD-check](https://github.com/hrbrmstr/slugify/workflows/R-CMD-check/badge.svg)](https://github.com/hrbrmstr/slugify/actions?query=workflow%3AR-CMD-check)
4 years ago
[![Linux build
Status](https://travis-ci.org/hrbrmstr/slugify.svg?branch=master)](https://travis-ci.org/hrbrmstr/slugify)
![Minimal R
Version](https://img.shields.io/badge/R%3E%3D-3.6.0-blue.svg)
![License](https://img.shields.io/badge/License-MIT-blue.svg)
# slugify
4 years ago
Create Slug Strings for SEO
4 years ago
## Description
Most blogging platforms turn title phrases into slugs for better SEO.
Tools are provided to turn phrases into slugs.
## What’s Inside The Tin
The following functions are implemented:
4 years ago
- `slugify_native`: Native R slugify (with the help of stringi)
4 years ago
- `slugify`: Slugify a string
4 years ago
## Installation
``` r
4 years ago
install.packages("slugify", repos = c("https://cinc.rud.is", "https://cloud.r-project.org/"))
# or
4 years ago
remotes::install_git("https://git.rud.is/hrbrmstr/slugify.git")
# or
remotes::install_git("https://git.sr.ht/~hrbrmstr/slugify")
# or
remotes::install_gitlab("hrbrmstr/slugify")
# or
remotes::install_bitbucket("hrbrmstr/slugify")
# or
remotes::install_github("hrbrmstr/slugify")
```
NOTE: To use the ‘remotes’ install options you will need to have the
[{remotes} package](https://github.com/r-lib/remotes) installed.
## Usage
``` r
library(slugify)
# current version
packageVersion("slugify")
4 years ago
## [1] '0.2.0'
4 years ago
```
``` r
4 years ago
slugify("New Package — {cdccovidview} — To Work with the U.S. CDC’s New COVID-19 Trackers: COVIDView and COVID-NET")
## [1] "new-package-cdccovidview-to-work-with-the-us-cdcs-new-covid-19-trackers-covidview-and-covid-net"
4 years ago
4 years ago
slugify("New Package — {cdccovidview} — To Work with the U.S. CDC’s New COVID-19 Trackers: COVIDView and COVID-NET", replacement = "@")
## [1] "new@package@cdccovidview@to@work@with@the@us@cdcs@new@covid19@trackers@covidview@and@covidnet"
4 years ago
slugify("R is great!", remove = "/[Rr]/g")
## [1] "is-geat"
4 years ago
```
4 years ago
``` r
slugify_native("New Package — {cdccovidview} — To Work with the U.S. CDC’s New COVID-19 Trackers: COVIDView and COVID-NET")
## [1] "new-package-cdccovidview-to-work-with-the-us-cdcs-new-covid-19-trackers-covidview-and-covid-net"
slugify_native("New Package — {cdccovidview} — To Work with the U.S. CDC’s New COVID-19 Trackers: COVIDView and COVID-NET", repl = "@")
## [1] "new@package@cdccovidview@to@work@with@the@us@cdcs@new@covid-19@trackers@covidview@and@covid-net"
```
``` r
microbenchmark::microbenchmark(
slugify_native("New Package — {cdccovidview} — To Work with the U.S. CDC’s New COVID-19 Trackers: COVIDView and COVID-NET"),
slugify("New Package — {cdccovidview} — To Work with the U.S. CDC’s New COVID-19 Trackers: COVIDView and COVID-NET"),
control = list(warmup = 10)
)
## Unit: microseconds
## expr
## slugify_native("New Package — {cdccovidview} — To Work with the U.S. CDC’s New COVID-19 Trackers: COVIDView and COVID-NET")
## slugify("New Package — {cdccovidview} — To Work with the U.S. CDC’s New COVID-19 Trackers: COVIDView and COVID-NET")
4 years ago
## min lq mean median uq max neval
4 years ago
## 294.659 310.4540 376.8535 326.3330 375.5105 1446.752 100
## 274.091 302.8215 439.2495 336.0975 476.3755 1314.823 100
4 years ago
```
4 years ago
## slugify Metrics
4 years ago
| Lang | \# Files | (%) | LoC | (%) | Blank lines | (%) | \# Lines | (%) |
| :--- | -------: | ---: | --: | ---: | ----------: | ---: | -------: | ---: |
4 years ago
| R | 6 | 0.86 | 130 | 0.88 | 25 | 0.52 | 32 | 0.48 |
| Rmd | 1 | 0.14 | 18 | 0.12 | 23 | 0.48 | 35 | 0.52 |
4 years ago
clock Package Metrics for slugify
4 years ago
## Code of Conduct
Please note that this project is released with a Contributor Code of
Conduct. By participating in this project you agree to abide by its
terms.