Commit Graph

112 Commits

Author SHA1 Message Date
xenia 246c3996d8 add search element 2023-09-19 22:56:13 -04:00
xenia 2c55a5ac14 add meta theme-color 2023-08-24 05:06:57 -04:00
xenia 9fe91ebd2a add support for htmx attributes 2023-08-20 04:42:56 -04:00
Ashley Williams f6f0a0385d release: 0.5.0 2023-03-30 08:36:22 -05:00
Ashley Williams 35d8061436 fix(deps): update all deps 2023-03-29 12:06:19 -05:00
Ashley Williams 21bc106733 fix(deps): update strum 2023-03-29 12:01:49 -05:00
Adrian Heine 2c417a0a5b Sync crate doc with README 2023-03-26 01:09:55 +01:00
Adrian Heine a558473795 Use intra-doc links instead of manual links 2023-03-26 01:08:43 +01:00
Adrian Heine 46a2794a87 Rename more typed-html references
This also fixes the documentation links from axohtml_macros to axohtml.
2023-03-14 13:36:23 +01:00
Ashley Williams 67e74aabcb 0.4.1 2023-01-24 18:22:10 -06:00
Ashley Williams f0673efc94 fix(types): Permission Policy, not policy 2023-01-24 18:10:04 -06:00
Sara Vieira 54b70652bb v0.4.0 2023-01-24 15:22:58 -06:00
Sara Vieira 113fec3e99 add permissions policy 2023-01-24 15:34:50 +01:00
Sara Vieira ecb0029c20 0.3.0 2023-01-02 14:36:14 -06:00
Sara Vieira a9a712d915 add seo tags for twitter 2023-01-02 12:25:09 -06:00
ashley williams 03efe72dad
Merge pull request #14 from axodotdev/allow_unsafe
allow unsafe text in script
2022-12-23 10:54:18 -06:00
Sara Vieira 3ea02872c7 Merge branch 'main' of github.com:axodotdev/axohtml into aria-sort 2022-12-23 16:01:35 +00:00
Sara Vieira 527ab6fe15 Merge branch 'main' of github.com:axodotdev/axohtml into allow_unsafe 2022-12-23 16:00:28 +00:00
Sara Vieira 0384d4e4fb only allow unsafe 2022-12-23 15:59:28 +00:00
ashley williams f392e6daac
Merge pull request #10 from axodotdev/fix-data
Fix data attributes && add ability to have script in HTML
2022-12-23 09:31:17 -06:00
Sara Vieira 59fa2fd099 allow unsafe text in script 2022-12-22 21:34:50 +00:00
Sara Vieira 85481c23c1 type aria sort 2022-12-22 17:38:57 +00:00
Sara Vieira a2fd84ab5e type aria orientation 2022-12-22 17:35:41 +00:00
Sara Vieira ae1462cdb8 fix data attrs, support scfript 2022-12-22 14:28:12 +00:00
Ashley Williams 5f88f45c30 0.2.0 2022-12-19 15:37:02 -06:00
Sara Vieira 3e2d9282f6 add support for aria 2022-12-19 19:27:48 +00:00
Sara Vieira 5a92c5994c revert bump 2022-12-19 16:11:56 +00:00
Sara Vieira 44984f451c up version 2022-12-19 14:06:21 +00:00
Sara Vieira 9d8c50f4d5 add proprety in meta tags 2022-12-19 14:04:06 +00:00
Ashley Williams 73cb76a2d4 fix(doc): update example text for rustdoc 2022-12-16 09:14:31 -06:00
Ashley Williams 3c62510e12 fix(clippy): appease 2022-12-16 07:56:49 -06:00
Ashley Williams 37c410a53c fork: remove dodrio and stdweb stuff for now 2022-12-15 17:27:58 -06:00
Ashley Williams d4bec7a233 fork: update authors, editions 2022-12-15 17:19:41 -06:00
Ashley Williams e5f2b5c106 style: appease clippy 2022-12-15 16:40:54 -06:00
Ashley Williams ddc8bc12d0 fork: rename and reversion 2022-12-15 16:35:42 -06:00
Bodil Stokke e18d328951 Bump all the deps and appease Clippy, 2022 edition. 2022-01-27 19:38:31 +00:00
Samuel El-Borai 95764776f2 Remove use of deprecated proc_macro_hack
This fixes the error:
"unresolved macro `$crate::proc_macro_call_dodrio!`" from the file
examples/dodrio/counter/src/lib.rs.

Quoting proc_macro_hack documentation:
> Note: As of Rust 1.45 this crate is superseded by native support for
> #[proc_macro] in expression position. Only consider using this crate
> if you care about supporting compilers between 1.31 and 1.45.

Source: https://docs.rs/proc-macro-hack/latest/proc_macro_hack/index.html
2022-01-27 18:16:32 +00:00
Samuel El-Borai 9d5f32ba9b cargo clippy --fix -- --allow unused_braces
- The '--allow unused_braces' is to avoid removing the extra curly
  braces used within html! macro calls.
2022-01-27 18:16:32 +00:00
dependabot-preview[bot] 4c13ecca50 Update dodrio requirement from 0.1.0 to 0.2.0
Updates the requirements on [dodrio](https://github.com/fitzgen/dodrio) to permit the latest version.
- [Release notes](https://github.com/fitzgen/dodrio/releases)
- [Commits](https://github.com/fitzgen/dodrio/commits/0.2.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-05-11 15:15:14 +01:00
Josh Stone d95ce1a293 Use Vec to implement the Events iterators
Using `vec::IntoIter` is much simpler than a deeply nested `Chain`,
compiling faster and avoiding the deeper recursion limit reported in
[rust#71359](https://github.com/rust-lang/rust/issues/71359).
2020-04-24 16:37:26 +01:00
Bodil Stokke 810fc82069 Bump what can be bumped. 2020-03-06 18:07:02 +00:00
Bodil Stokke 5f652f1840 Release 0.2.2 2020-02-07 17:42:35 +00:00
Mathias Svensson 0950c82294 Use `slice::iter` instead of `into_iter` to avoid future breakage
`an_array.into_iter()` currently just works because of the autoref
feature, which then calls `<[T] as IntoIterator>::into_iter`. But
in the future, arrays will implement `IntoIterator`, too. In order
to avoid problems in the future, the call is replaced by `iter()`
which is shorter and more explicit.
2019-11-29 14:30:35 +00:00
Bodil Stokke 652bc9f1c3 Bump some deps, lock another. 2019-10-01 14:44:21 +01:00
Bodil Stokke f70c00b460 Release 0.2.1 2019-06-28 14:51:32 +01:00
Bodil Stokke d97c8fa03c Clippy appeasement. 2019-06-28 14:45:44 +01:00
Jonathan Kingston 8c340453eb Add Send to all output types 2019-05-28 16:30:53 +02:00
Jonathan Kingston 62dd064f79 Add Send bound. Fixes #50 2019-05-28 16:30:53 +02:00
Jonathan Kingston 1588f30353 Relax attribute escaping. Fixes #26 2019-05-28 16:06:13 +02:00
Jonathan Kingston 9c81041cac Support expressions in text! macro 2019-05-28 16:04:19 +02:00