diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-13 11:56:25 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-13 12:00:31 +0200 |
commit | 133d2ea00f3cdf0e665859c660cc6f7e8763c3b3 (patch) | |
tree | 636f321e40731746f1d5b681ec7446b52c5dc21f /src/lib.rs | |
parent | 5be90fddf6b9339e680469a86f1bbd750ec3a608 (diff) | |
download | markdown-rs-133d2ea00f3cdf0e665859c660cc6f7e8763c3b3.tar.gz markdown-rs-133d2ea00f3cdf0e665859c660cc6f7e8763c3b3.tar.bz2 markdown-rs-133d2ea00f3cdf0e665859c660cc6f7e8763c3b3.zip |
Add logo to crate docs
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -15,9 +15,10 @@ #![deny(clippy::pedantic)] #![allow(clippy::doc_link_with_quotes)] #![allow(clippy::too_many_lines)] - -// To do: set this when public. -// #![doc(html_logo_url = "https://xxx")] +// Would be nice to use `logo-chromatic`, but that looks horrible on Safari at relatively small sizes currently. 😢 +#![doc( + html_logo_url = "https://raw.githubusercontent.com/wooorm/markdown-rs/8924580/media/logo-monochromatic.svg?sanitize=true" +)] extern crate alloc; |