twitter-text

Crates.iotwitter-text
lib.rstwitter-text
version0.2.0
sourcesrc
created_at2019-03-11 23:31:11.732066
updated_at2020-05-19 21:39:21.468699
descriptionAn implementation of twitter-text in Rust.
homepage
repositoryhttps://github.com/sayrer/twitter-text
max_upload_size
id120157
size63,636
RS (sayrer)

documentation

README

twitter-text in Rust

This repo is a Rust implementation of twitter-text. All aspects of tweet text are parsed by a Pest PEG grammar, with the exception of URL length and character weighting. See the parser directory for the grammar. Procedural validation for URL lengths and character weights is performed by the Extractor code.

To run the tests, install Rust, and then try this in the terminal:

> cargo build
> cargo test

The original Twitter README content is below.

twitter-text

This repo is a collection of libraries and conformance tests to standardize parsing of Tweet text. It synchronizes development, testing, creating issues, and pull requests for twitter-text's implementations and specification. These libraries are responsible for determining the quantity of characters in a Tweet and identifying and linking any url, @username, #hashtag, or $cashtag.

See implementations and conformance in this repo below:

Copyright and License

Copyright 2012-2018 Twitter, Inc and other contributors

Copyright 2019 Robert Sayre

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

Commit count: 2385

cargo fmt