Skip to content

Commit 9ea7a3b

Browse files
committed
fix references to github.io page
Signed-off-by: Andrei Gherghescu <[email protected]>
1 parent f051a87 commit 9ea7a3b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ Version 0.8.0 represents a significant release which refactors a lot of the code
8585

8686
## [0.6.0] - 2020-07-25
8787
### Added
88-
- Shapes support ([documentation](https://igiagkiozis.github.io/plotly/content/fundamentals/shapes.html)).
88+
- Shapes support ([documentation](https://plotly.github.io/plotly.rs/content/fundamentals/shapes.html)).
8989
- Annotations support.
9090
- Docstrings to `Scatter`.
91-
- `ndarray` support ([documentation](https://igiagkiozis.github.io/plotly/content/fundamentals/ndarray_support.html)).
92-
- Jupyter lab and notebook support ([documentation](https://igiagkiozis.github.io/plotly/content/fundamentals/jupyter_support.html)).
91+
- `ndarray` support ([documentation](https://plotly.github.io/plotly.rs/content/fundamentals/ndarray_support.html)).
92+
- Jupyter lab and notebook support ([documentation](https://plotly.github.io/plotly.rs/content/fundamentals/jupyter_support.html)).
9393
### Changed
9494
- Removed `num` dependence.
9595
- Removed `plotly_orca` and the `orca` feature. Use the `kaleido` feature for static image generation.
@@ -107,7 +107,7 @@ Version 0.8.0 represents a significant release which refactors a lot of the code
107107

108108
## [0.5.0] - 2020-07-12
109109
### Added
110-
- [Plotly.rs Book](https://igiagkiozis.github.io/plotly/).
110+
- [Plotly.rs Book](https://plotly.github.io/plotly.rs/).
111111
- Using plotly.js from the official CDN is now the default. To use the local version use the `Plot::use_local_plotly` method.
112112
- Plot rasterization to `png`, `jpg`, `eps`, `pdf`, `webp` and `svg` using [plotly/Kaleido](https://github.com/plotly/Kaleido), enabled using the `kaleido` feature.
113113
- Multi-axis support and examples.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
</a>
2020
</p>
2121
<h4>
22-
<a href="https://igiagkiozis.github.io/plotly/content/getting_started.html">Getting Started</a>
22+
<a href="https://plotly.github.io/plotly.rs/content/getting_started.html">Getting Started</a>
2323
<span> | </span>
24-
<a href="https://igiagkiozis.github.io/plotly/content/recipes.html">Recipes</a>
24+
<a href="https://plotly.github.io/plotly.rs/content/recipes.html">Recipes</a>
2525
<span> | </span>
2626
<a href="https://docs.rs/crate/plotly/">API Docs</a>
2727
<span> | </span>
@@ -44,7 +44,7 @@
4444

4545
A plotting library for Rust powered by [Plotly.js](https://plot.ly/javascript/).
4646

47-
Documentation and numerous interactive examples are available in the [Plotly.rs Book](https://igiagkiozis.github.io/plotly/content/getting_started.html), the [examples/](https://github.com/plotly/plotly.rs/tree/main/examples) directory and [docs.rs](https://docs.rs/crate/plotly).
47+
Documentation and numerous interactive examples are available in the [Plotly.rs Book](https://plotly.github.io/plotly.rs/content/getting_started.html), the [examples/](https://github.com/plotly/plotly.rs/tree/main/examples) directory and [docs.rs](https://docs.rs/crate/plotly).
4848

4949

5050
For changes since the last version, please consult the [changelog](https://github.com/plotly/plotly.rs/tree/main/CHANGELOG.md).

plotly/src/plot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ let height = 680;
6161
let scale = 1.0;
6262
plot.write_image("filename", ImageFormat::PNG, width, height, scale);
6363
64-
See https://igiagkiozis.github.io/plotly/content/getting_started.html for further details.
64+
See https://plotly.github.io/plotly.rs/content/getting_started.html for further details.
6565
"#;
6666

6767
/// Image format for static image export.

0 commit comments

Comments
 (0)