diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-06-06 09:12:18 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-06 20:00:16 -0700 |
| commit | e5bbbca33e11d9e22dbbe32c975f908710d4155c (patch) | |
| tree | 5095bb40b83e840f373b22f9fe62b0228d3a3453 /src/doc/rust.css | |
| parent | cc63d4c61bb83fcbcef5ccfffcd9b26b1bf2d20a (diff) | |
| download | rust-e5bbbca33e11d9e22dbbe32c975f908710d4155c.tar.gz rust-e5bbbca33e11d9e22dbbe32c975f908710d4155c.zip | |
rustdoc: Submit examples to play.rust-lang.org
This grows a new option inside of rustdoc to add the ability to submit examples to an external website. If the `--markdown-playground-url` command line option or crate doc attribute `html_playground_url` is present, then examples will have a button on hover to submit the code to the playground specified. This commit enables submission of example code to play.rust-lang.org. The code submitted is that which is tested by rustdoc, not necessarily the exact code shown in the example. Closes #14654
Diffstat (limited to 'src/doc/rust.css')
| -rw-r--r-- | src/doc/rust.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/doc/rust.css b/src/doc/rust.css index d60dd54a67d..3957231a195 100644 --- a/src/doc/rust.css +++ b/src/doc/rust.css @@ -313,6 +313,19 @@ table th { padding: 5px; } +/* Code snippets */ + +.rusttest { display: none; } +pre.rust { position: relative; } +pre.rust a { transform: scaleX(-1); } +.test-arrow { + display: inline-block; + position: absolute; + top: 0; + right: 10px; + font-size: 150%; +} + @media (min-width: 1170px) { pre { font-size: 15px; |
