Skip to content

Commit dc3859d

Browse files
committed
rustdoc: add cli argument --playground-url
1 parent 87b76a5 commit dc3859d

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/librustdoc/html/render.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -469,10 +469,8 @@ pub fn run(mut krate: clean::Crate,
469469
clean::NameValue(ref x, ref s)
470470
if "html_playground_url" == *x => {
471471
markdown::PLAYGROUND.with(|slot| {
472-
if slot.borrow().is_none() {
473-
let name = krate.name.clone();
474-
*slot.borrow_mut() = Some((Some(name), s.clone()));
475-
}
472+
let name = krate.name.clone();
473+
*slot.borrow_mut() = Some((Some(name), s.clone()));
476474
});
477475
}
478476
clean::NameValue(ref x, ref s)

src/librustdoc/lib.rs

+8
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,10 @@ pub fn opts() -> Vec<RustcOptGroup> {
162162
unstable(optmulti("Z", "",
163163
"internal and debugging options (only on nightly build)", "FLAG")),
164164
stable(optopt("", "sysroot", "Override the system root", "PATH")),
165+
stable(optopt("", "playground-url",
166+
"URL to send code snippets to, may be reset by --markdown-playground-url \
167+
or `#![doc(html_playground_url=...)]`",
168+
"URL")),
165169
]
166170
}
167171

@@ -230,6 +234,10 @@ pub fn main_args(args: &[String]) -> isize {
230234
}
231235
};
232236

237+
if let Some(playground) = matches.opt_str("playground-url") {
238+
html::markdown::PLAYGROUND.with(|s| { *s.borrow_mut() = Some((None, playground)); });
239+
}
240+
233241
let test_args = matches.opt_strs("test-args");
234242
let test_args: Vec<String> = test_args.iter()
235243
.flat_map(|s| s.split_whitespace())

0 commit comments

Comments
 (0)