Skip to content

Commit

Permalink
docs: Add bare-bones README files
Browse files Browse the repository at this point in the history
  • Loading branch information
JadedBlueEyes committed Jul 12, 2024
1 parent 773a226 commit 6861793
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# MessageFormat

[![CI status](https://github.com/JadedBlueEyes/messageformat/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/JadedBlueEyes/messageformat/actions/workflows/ci.yml?query=branch%3Amain) [![dependency status](https://deps.rs/repo/github/JadedBlueEyes/messageformat/status.svg?path=crates%2Fmf1)](https://deps.rs/repo/github/JadedBlueEyes/messageformat?path=crates%2Fmf1) [![Last commit](https://img.shields.io/github/last-commit/JadedBlueEyes/messageformat.svg?logo=github&logoColor=white)](https://github.com/JadedBlueEyes/messageformat/commits/main/) [![pre-commit enabled](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
[![CI status](https://github.com/JadedBlueEyes/messageformat/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/JadedBlueEyes/messageformat/actions/workflows/ci.yml?query=branch%3Amain) [![Dependency status](https://deps.rs/repo/github/JadedBlueEyes/messageformat/status.svg?path=crates%2Fmf1)](https://deps.rs/repo/github/JadedBlueEyes/messageformat?path=crates%2Fmf1) [![Last commit](https://img.shields.io/github/last-commit/JadedBlueEyes/messageformat.svg?logo=github&logoColor=white)](https://github.com/JadedBlueEyes/messageformat/commits/main/) [![pre-commit enabled](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)

MessageFormat is a collection of crates to help with internationalising Rust applications using ICU MessageFormat.

- [mf1](./crates/mf1/)
- [mf1-macros](./crates/mf1-macros/)
- [mf1-parser](./crates/mf1/-parser)

Take a look at the [basic example](https://github.com/JadedBlueEyes/messageformat/blob/main/examples/basic/).
9 changes: 9 additions & 0 deletions crates/mf1-macros/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# mf1-macros

![Last commit](https://img.shields.io/github/last-commit/JadedBlueEyes/messageformat?path=crates%2Fmf1-macros) [![Dependency status](https://deps.rs/repo/github/JadedBlueEyes/messageformat/status.svg?path=crates%2Fmf1-macros)](https://deps.rs/repo/github/JadedBlueEyes/messageformat?path=crates%2Fmf1-macros)

Macros for the [mf1](../mf1/README.md) crate

[CHANGELOG](CHANGELOG.md)

License: MIT OR Apache-2.0
9 changes: 9 additions & 0 deletions crates/mf1-parser/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# mf1-parser

![Last commit](https://img.shields.io/github/last-commit/JadedBlueEyes/messageformat?path=crates%2Fmf1-parser) [![Dependency status](https://deps.rs/repo/github/JadedBlueEyes/messageformat/status.svg?path=crates%2Fmf1-parser)](https://deps.rs/repo/github/JadedBlueEyes/messageformat?path=crates%2Fmf1-parser)

Parse ICU MessageFormat 1 syntax

[CHANGELOG](CHANGELOG.md)

License: MIT OR Apache-2.0
2 changes: 1 addition & 1 deletion crates/mf1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "mf1"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Use ICU Messageformat 1 to internationalise your apps"
description = "Use ICU MessageFormat 1 to internationalise your apps"

[dependencies]

Expand Down
9 changes: 9 additions & 0 deletions crates/mf1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# mf1

![Last commit](https://img.shields.io/github/last-commit/JadedBlueEyes/messageformat?path=crates%2Fmf1) [![Dependency status](https://deps.rs/repo/github/JadedBlueEyes/messageformat/status.svg?path=crates%2Fmf1)](https://deps.rs/repo/github/JadedBlueEyes/messageformat?path=crates%2Fmf1)

Use ICU MessageFormat 1 to internationalise your apps

[CHANGELOG](CHANGELOG.md)

License: MIT OR Apache-2.0

0 comments on commit 6861793

Please sign in to comment.