⬆️ Actualiza el código de maud a la versión 0.27.0

This commit is contained in:
Manuel Cillero 2025-07-07 20:31:00 +02:00
parent 5ec1b0dc8f
commit bceb43e6d0
11 changed files with 1459 additions and 1221 deletions

View file

@ -2,10 +2,6 @@
// !!!!!!!! PLEASE KEEP THIS IN SYNC WITH `maud/src/escape.rs` !!!!!!!!!
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
extern crate alloc;
use alloc::string::String;
pub fn escape_to_string(input: &str, output: &mut String) {
for b in input.bytes() {
match b {
@ -20,10 +16,7 @@ pub fn escape_to_string(input: &str, output: &mut String) {
#[cfg(test)]
mod test {
extern crate alloc;
use super::escape_to_string;
use alloc::string::String;
#[test]
fn it_works() {