Implement better markdown escaping and inline code escape (#23222)

Motivation for this is using markdown for keymap error notifications in
#23113, but it also benefits the copied text of repl tables.

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2025-01-16 04:06:57 -07:00 committed by GitHub
parent 5fdd7edb90
commit 8e6fc3c807
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 250 additions and 12 deletions

View file

@ -1,6 +1,7 @@
pub mod arc_cow;
pub mod command;
pub mod fs;
pub mod markdown;
pub mod paths;
pub mod serde;
#[cfg(any(test, feature = "test-support"))]