Skip to content

Commit ea8d95c

Browse files
authored
fix hyperlinks (#263)
Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com>
1 parent 48bc816 commit ea8d95c

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

CONTRIBUTING.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ When your contribution is ready for review, make a pull request with your change
2020

2121
## Code of Conduct
2222

23-
In all forums, we follow the [Rust Code of Conduct]. For escalation or moderation issues please reach out to @andrei-ng or the Plotly official community at [community@plot.ly](mailto:community@plot.ly) instead of the Rust moderation team.
24-
25-
[Rust Code of Conduct]: https://www.rust-lang.org/conduct.html
23+
The code of conduct is detailed in our [Code of Conduct](https://github.com/plotly/plotly.rs/tree/main/CODE_OF_CONDUCT.md). For escalation or moderation issues please reach out to one of the maintainers of this crate or the Plotly official community at [community@plot.ly](mailto:community@plot.ly).
2624

2725
## Attribution
2826

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
* [Usage Within a Wasm Environment](#usage-within-a-wasm-environment)
4545
* [Crate Feature Flags](#crate-feature-flags)
4646
* [Contributing](#contributing)
47+
* [Code of Conduct](#code-of-conduct)
4748
* [License](#license)
4849

4950
# Introduction
@@ -124,7 +125,7 @@ plot.write_image("out.png", ImageFormat::PNG, 800, 600, 1.0);
124125

125126
On your host, when building this project with the `kaleido` feature enabled the Kaleido binary is downloaded automatically for your system's architecture at compile time from the official Kaleido [release page](https://github.com/plotly/Kaleido/releases). This library currently supports `x86_64` on Linux and Windows, and both `x86_64` and `aarch64` on macOS.
126127

127-
When building application for other targets that depend on this feature, the `Kaleido` binary will need to be installed manually on the target machine. Currently, the location where the binary is expected is hardcoded depending on the target OS. E.g., on Linux this defaults to `~/.config/kaleido`. This is defined in source code at [here](https://github.com/plotly/plotly.rs/blob/1405731b5121c1343b491e307222a21ef4becc5e/plotly_kaleido/src/lib.rs#L89)
128+
When building application for other targets that depend on this feature, the `Kaleido` binary will need to be installed manually on the target machine. Currently, the location where the binary is expected is hardcoded depending on the target OS. E.g., on Linux this defaults to `~/.config/kaleido`. This is defined in source code [here](https://github.com/plotly/plotly.rs/blob/1405731b5121c1343b491e307222a21ef4becc5e/plotly_kaleido/src/lib.rs#L89)
128129

129130
## Usage Within a Wasm Environment
130131

@@ -225,8 +226,10 @@ Enables compilation for the `wasm32-unknown-unknown` target and provides access
225226

226227
* Pull requests are welcome, see the [contributing guide](https://github.com/plotly/plotly.rs/tree/main/CONTRIBUTING.md) for more information.
227228

228-
# License
229+
# Code of Conduct
230+
231+
See the [Code of Conduct](https://github.com/plotly/plotly.rs/tree/main/CODE_OF_CONDUCT.md) for more information.
229232

230-
`Plotly.rs` is distributed under the terms of the MIT license.
233+
# License
231234

232-
See [LICENSE-MIT](https://github.com/plotly/plotly.rs/tree/main/LICENSE-MIT), and [COPYRIGHT](https://github.com/plotly/plotly.rs/tree/main/COPYRIGHT) for details.
235+
`Plotly.rs` is distributed under the terms of the MIT license, see [LICENSE](https://github.com/plotly/plotly.rs/tree/main/LICENSE).

0 commit comments

Comments
 (0)