Compare commits
No commits in common. "master" and "v0.1.3" have entirely different histories.
8 changed files with 24 additions and 37 deletions
|
|
@ -17,13 +17,6 @@ A dependency update to an incompatible version is considered a breaking change.
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
## v0.2.0 - 2025-01-01
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- **(breaking)** Updated `axum-core` dependency to `0.5.0`
|
|
||||||
- Relaxed lower bound on `http` dependency to `1.0.0`
|
|
||||||
|
|
||||||
## v0.1.3 - 2024-12-21
|
## v0.1.3 - 2024-12-21
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
20
Cargo.toml
20
Cargo.toml
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "el"
|
name = "el"
|
||||||
version = "0.2.0"
|
version = "0.1.3"
|
||||||
edition = "2024"
|
edition = "2021"
|
||||||
authors = ["Garmelon <garmelon@plugh.de>"]
|
authors = ["Garmelon <garmelon@plugh.de>"]
|
||||||
description = "Write and manipulate HTML elements as data"
|
description = "Write and manipulate HTML elements as data"
|
||||||
repository = "https://git.plugh.de/Garmelon/el"
|
repository = "https://github.com/Garmelon/el"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
keywords = ["html", "svg", "mathml", "hiccup"]
|
keywords = ["html", "svg", "mathml", "hiccup"]
|
||||||
categories = ["web-programming", "template-engine"]
|
categories = ["web-programming", "template-engine"]
|
||||||
|
|
@ -13,18 +13,16 @@ categories = ["web-programming", "template-engine"]
|
||||||
axum = ["dep:axum-core", "dep:http"]
|
axum = ["dep:axum-core", "dep:http"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum-core = { version = "0.5.0", optional = true }
|
axum-core = { version = "0.4.5", optional = true }
|
||||||
http = { version = "1.0.0", optional = true }
|
http = { version = "1.1.0", optional = true }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
rust.unsafe_code = { level = "forbid", priority = 1 }
|
rust.unsafe_code = { level = "forbid", priority = 1 }
|
||||||
# Lint groups
|
# Lint groups
|
||||||
rust.deprecated-safe = "warn"
|
rust.deprecated_safe = "warn"
|
||||||
rust.future-incompatible = "warn"
|
rust.future_incompatible = "warn"
|
||||||
rust.keyword-idents = "warn"
|
rust.keyword_idents = "warn"
|
||||||
rust.nonstandard-style = "warn"
|
rust.rust_2018_idioms = "warn"
|
||||||
rust.refining-impl-trait = "warn"
|
|
||||||
rust.rust-2018-idioms = "warn"
|
|
||||||
rust.unused = "warn"
|
rust.unused = "warn"
|
||||||
# Individual lints
|
# Individual lints
|
||||||
rust.let_underscore_drop = "warn"
|
rust.let_underscore_drop = "warn"
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ See the top-level crate documentation for more info.
|
||||||
|
|
||||||
## But what about that small helper function?
|
## But what about that small helper function?
|
||||||
|
|
||||||
Here it is in full, for posterity:
|
Here it is in full, for posteriority:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
function el(name, attributes, ...children) {
|
function el(name, attributes, ...children) {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
use axum_core::response::IntoResponse;
|
use axum_core::response::IntoResponse;
|
||||||
use http::{HeaderValue, StatusCode, header};
|
use http::{header, HeaderValue, StatusCode};
|
||||||
|
|
||||||
use crate::{Document, Render};
|
use crate::{Document, Render};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -58,9 +58,10 @@ pub fn is_valid_raw_text(tag_name: &str, text: &str) -> bool {
|
||||||
// "[...] followed by characters that case-insensitively match the tag
|
// "[...] followed by characters that case-insensitively match the tag
|
||||||
// name of the element [...]"
|
// name of the element [...]"
|
||||||
//
|
//
|
||||||
// Note: Since we know that tag names are ascii-only, we can use an
|
// Note: Since we know that tag names are ascii-only, we can convert
|
||||||
// ASCII-based case insensitive comparison without unicode shenanigans.
|
// both to lowercase for a case-insensitive comparison without weird
|
||||||
if !potential_tag_name.eq_ignore_ascii_case(tag_name) {
|
// unicode shenanigans.
|
||||||
|
if potential_tag_name.to_ascii_lowercase() != tag_name.to_ascii_lowercase() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
use std::collections::{BTreeMap, HashMap, btree_map::Entry};
|
use std::collections::{btree_map::Entry, BTreeMap, HashMap};
|
||||||
|
|
||||||
/// The kind of an element.
|
/// The kind of an element.
|
||||||
///
|
///
|
||||||
|
|
@ -501,12 +501,8 @@ element_component_tuple!(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11);
|
||||||
element_component_tuple!(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12);
|
element_component_tuple!(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12);
|
||||||
element_component_tuple!(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13);
|
element_component_tuple!(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13);
|
||||||
element_component_tuple!(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14);
|
element_component_tuple!(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14);
|
||||||
element_component_tuple!(
|
element_component_tuple!(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14, C15);
|
||||||
C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14, C15
|
element_component_tuple!(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14, C15, C16);
|
||||||
);
|
|
||||||
element_component_tuple!(
|
|
||||||
C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14, C15, C16
|
|
||||||
);
|
|
||||||
|
|
||||||
/// A full HTML document including doctype.
|
/// A full HTML document including doctype.
|
||||||
///
|
///
|
||||||
|
|
|
||||||
10
src/lib.rs
10
src/lib.rs
|
|
@ -84,7 +84,7 @@ pub use self::{element::*, render::*};
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use crate::{Attr, Content, Element, Render, html::*};
|
use crate::{html::*, Attr, Content, Element, Render};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn simple_website() {
|
fn simple_website() {
|
||||||
|
|
@ -130,11 +130,9 @@ mod tests {
|
||||||
|
|
||||||
assert!(script("hello </script> world").render_to_string().is_err());
|
assert!(script("hello </script> world").render_to_string().is_err());
|
||||||
|
|
||||||
assert!(
|
assert!(script("hello </ScRiPt ... world")
|
||||||
script("hello </ScRiPt ... world")
|
.render_to_string()
|
||||||
.render_to_string()
|
.is_err());
|
||||||
.is_err()
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
use std::{error, fmt};
|
use std::{error, fmt};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
Document, check,
|
check,
|
||||||
element::{Content, Element, ElementKind},
|
element::{Content, Element, ElementKind},
|
||||||
|
Document,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// The cause of an [`Error`].
|
/// The cause of an [`Error`].
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue