Skip to content

Commit cd8fce3

Browse files
committed
Update book links (askama.rs)
1 parent 99438a7 commit cd8fce3

File tree

22 files changed

+36
-36
lines changed

22 files changed

+36
-36
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/askama?logo=rust&style=flat-square&logoColor=white "Crates.io")](https://crates.io/crates/askama)
44
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/askama-rs/askama/rust.yml?branch=master&logo=github&style=flat-square&logoColor=white "GitHub Workflow Status")](https://github.com/askama-rs/askama/actions/workflows/rust.yml)
5-
[![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.readthedocs.io/)
5+
[![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.rs/)
66
[![docs.rs](https://img.shields.io/docsrs/askama?logo=docsdotrs&style=flat-square&logoColor=white "docs.rs")](https://docs.rs/askama/)
77

88
**Askama** implements a template rendering engine based on [Jinja](https://jinja.palletsprojects.com/),
@@ -16,9 +16,9 @@ All feedback welcome! Feel free to file bugs, requests for documentation and
1616
any other feedback to the [issue tracker][issues].
1717

1818
You can find the documentation about our syntax, features, configuration in our book:
19-
[askama.readthedocs.io](https://askama.readthedocs.io/).
19+
[askama.rs](https://askama.rs/).
2020

21-
Have a look at our [*Askama Playground*](https://askama-rs.github.io/askama_playground/),
21+
Have a look at our [*Askama Playground*](https://play.askama.rs/),
2222
if you want to try out askama's code generation online.
2323

2424
### Feature highlights

askama/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.15.2"
44
description = "Type-safe, compiled Jinja-like templates for Rust"
55
keywords = ["markup", "template", "jinja2", "html"]
66
categories = ["template-engine"]
7-
homepage = "https://askama.readthedocs.io/"
7+
homepage = "https://askama.rs/"
88
repository = "https://github.com/askama-rs/askama"
99
license = "MIT OR Apache-2.0"
1010
edition = "2024"

askama/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! [![Crates.io](https://img.shields.io/crates/v/askama?logo=rust&style=flat-square&logoColor=white "Crates.io")](https://crates.io/crates/askama)
22
//! [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/askama-rs/askama/rust.yml?branch=master&logo=github&style=flat-square&logoColor=white "GitHub Workflow Status")](https://github.com/askama-rs/askama/actions/workflows/rust.yml)
3-
//! [![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.readthedocs.io/)
3+
//! [![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.rs/)
44
//! [![docs.rs](https://img.shields.io/docsrs/askama?logo=docsdotrs&style=flat-square&logoColor=white "docs.rs")](https://docs.rs/askama/)
55
//!
66
//! Askama implements a type-safe compiler for Jinja-like templates.
@@ -13,7 +13,7 @@
1313
//! [README](https://github.com/askama-rs/askama/blob/master/README.md).
1414
//!
1515
//! You can find the documentation about our syntax, features, configuration in our book:
16-
//! [askama.readthedocs.io](https://askama.readthedocs.io/).
16+
//! [askama.rs](https://askama.rs/).
1717
//!
1818
//! # Creating Askama templates
1919
//!

askama_derive/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/askama_derive?logo=rust&style=flat-square&logoColor=white "Crates.io")](https://crates.io/crates/askama_derive)
44
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/askama-rs/askama/rust.yml?branch=master&logo=github&style=flat-square&logoColor=white "GitHub Workflow Status")](https://github.com/askama-rs/askama/actions/workflows/rust.yml)
5-
[![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.readthedocs.io/)
5+
[![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.rs/)
66
[![docs.rs](https://img.shields.io/docsrs/askama_derive?logo=docsdotrs&style=flat-square&logoColor=white "docs.rs")](https://docs.rs/askama_derive/)
77

88
This crate contains the code generator used by the

askama_derive/src/heritage.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl<'a> Context<'a> {
121121
);
122122
eprintln!(
123123
" You can repeat blocks by using the `template` proc-macro blocks: \
124-
https://askama.readthedocs.io/en/latest/creating_templates.html#blocks"
124+
https://askama.rs/en/latest/creating_templates.html#blocks"
125125
);
126126
eprintln!("⚠️⚠️⚠️ This will stop compiling starting next version!");
127127
} else if extends.is_none() {

askama_escape/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.15.2"
44
description = "HTML escaping, extracted from Askama"
55
keywords = ["html", "escaping"]
66
categories = ["no-std", "no-std::no-alloc"]
7-
homepage = "https://askama.readthedocs.io/"
7+
homepage = "https://askama.rs/"
88
repository = "https://github.com/askama-rs/askama"
99
license = "MIT OR Apache-2.0"
1010
readme = "README.md"

askama_escape/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# askama_escape: HTML escaping, extracted from [Askama](https://askama.readthedocs.io/)
1+
# askama_escape: HTML escaping, extracted from [Askama](https://askama.rs/)
22

33
[![Crates.io](https://img.shields.io/crates/v/askama_escape?logo=rust&style=flat-square&logoColor=white "Crates.io")](https://crates.io/crates/askama_escape)
44
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/askama-rs/askama/rust.yml?branch=master&logo=github&style=flat-square&logoColor=white "GitHub Workflow Status")](https://github.com/askama-rs/askama/actions/workflows/rust.yml)

askama_macros/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/askama_macros?logo=rust&style=flat-square&logoColor=white "Crates.io")](https://crates.io/crates/askama_macros)
44
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/askama-rs/askama/rust.yml?branch=master&logo=github&style=flat-square&logoColor=white "GitHub Workflow Status")](https://github.com/askama-rs/askama/actions/workflows/rust.yml)
5-
[![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.readthedocs.io/)
5+
[![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.rs/)
66
[![docs.rs](https://img.shields.io/docsrs/askama_macros?logo=docsdotrs&style=flat-square&logoColor=white "docs.rs")](https://docs.rs/askama_macros/)
77

88
This crate contains the procedural macros used by the

askama_parser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/askama_parser?logo=rust&style=flat-square&logoColor=white "Crates.io")](https://crates.io/crates/askama_parser)
44
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/askama-rs/askama/rust.yml?branch=master&logo=github&style=flat-square&logoColor=white "GitHub Workflow Status")](https://github.com/askama-rs/askama/actions/workflows/rust.yml)
5-
[![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.readthedocs.io/)
5+
[![Book](https://img.shields.io/readthedocs/askama?label=book&logo=readthedocs&style=flat-square&logoColor=white "Book")](https://askama.rs/)
66
[![docs.rs](https://img.shields.io/docsrs/askama_parser?logo=docsdotrs&style=flat-square&logoColor=white "docs.rs")](https://docs.rs/askama_parser/)
77

88
This crate contains the procedural macros used by the

book/src/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ See below for an example.
88
All feedback welcome! Feel free to file bugs, requests for documentation and
99
any other feedback to the [issue tracker][issues].
1010

11-
Have a look at our [*Askama Playground*](https://askama-rs.github.io/askama_playground/),
11+
Have a look at our [*Askama Playground*](https://play.askama.rs/),
1212
if you want to try out askama's code generation online.
1313

1414
## Feature highlights

0 commit comments

Comments
 (0)