Browse Source

Added logo and favicon to boa documentation (#343)

* Added logo and favicon to boa documentation

* Update lib.rs
pull/355/head
HalidOdat 4 years ago committed by GitHub
parent
commit
74c7375a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      boa/src/lib.rs

6
boa/src/lib.rs

@ -1,3 +1,9 @@
//! This is an experimental Javascript lexer, parser and compiler written in Rust. Currently, it has support for some of the language.
#![doc(
html_logo_url = "https://raw.githubusercontent.com/jasonwilliams/boa/master/assets/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/jasonwilliams/boa/master/assets/logo.svg"
)]
#![deny(
unused_qualifications,
clippy::all,

Loading…
Cancel
Save