From 133d2ea00f3cdf0e665859c660cc6f7e8763c3b3 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 13 Oct 2022 11:56:25 +0200 Subject: Add logo to crate docs --- src/lib.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index dc429c6..bc235c3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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; -- cgit