rustdoc: add cli argument --playground-url

This commit is contained in:
Liigo
2016-11-11 15:36:49 +08:00
committed by Liigo Zhuang
parent 87b76a521d
commit dc3859d73e
2 changed files with 10 additions and 4 deletions

View File

@@ -469,10 +469,8 @@ pub fn run(mut krate: clean::Crate,
clean::NameValue(ref x, ref s)
if "html_playground_url" == *x => {
markdown::PLAYGROUND.with(|slot| {
if slot.borrow().is_none() {
let name = krate.name.clone();
*slot.borrow_mut() = Some((Some(name), s.clone()));
}
let name = krate.name.clone();
*slot.borrow_mut() = Some((Some(name), s.clone()));
});
}
clean::NameValue(ref x, ref s)