diff --git a/README.md b/README.md index db42f1b..a3c0496 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Through the simplicity of Crossterm, you do not have to worry about the platform This crate supports all UNIX and Windows terminals down to Windows 7 (not all terminals are tested see [Tested Terminals](#tested-terminals) for more info). -This crate consists of five modules that are provided behind [feature flags](http://atcentra.com/crossterm/feature_flags.html) so that you can define which features you'd like to have; by default, all features are enabled. +This crate consists of five modules that are provided behind [feature flags](https://timonpost.github.io/crossterm/docs/feature_flags.html) so that you can define which features you'd like to have; by default, all features are enabled. - [Crossterm Style](https://crates.io/crates/crossterm_style) - [Crossterm Input](https://crates.io/crates/crossterm_input) - [Crossterm Screen](https://crates.io/crates/crossterm_screen) @@ -64,7 +64,7 @@ crossterm = "0.9.2" ### Useful Links -- [Book](http://atcentra.com/crossterm/) +- [Book](https://timonpost.github.io/crossterm/docs//) - [Documentation](https://docs.rs/crossterm/) - [Crates.io](https://crates.io/crates/crossterm) - [Program Examples](https://github.com/TimonPost/crossterm/tree/master/examples/program_examples) @@ -88,7 +88,7 @@ These are the features from this crate: - Background Color (16 base colors) - 256 (ANSI) Color Support (Windows 10 and UNIX Only) - RGB Color Support (Windows 10 and UNIX only) - - Text Attributes: bold, italic, underscore and crossed word and [more](http://atcentra.com/crossterm/styling.html#attributes) (Windows 10 and UNIX only) + - Text Attributes: bold, italic, underscore and crossed word and [more](https://timonpost.github.io/crossterm/docs//styling.html#attributes) (Windows 10 and UNIX only) - Terminal - Clearing (all lines, current line, from cursor down and up, until new line) - Scrolling (up, down) @@ -124,7 +124,7 @@ let input = crossterm.input(); ### Styled Font This module enables you to style the terminal font. -Good documentation can be found at the following places: [docs](https://docs.rs/crossterm_style/), [book](http://atcentra.com/crossterm/styling.html), [examples](https://github.com/TimonPost/crossterm/tree/master/examples/key_events.rs) +Good documentation can be found at the following places: [docs](https://docs.rs/crossterm_style/), [book](https://timonpost.github.io/crossterm/docs/styling.html), [examples](https://github.com/TimonPost/crossterm/tree/master/examples/key_events.rs) _imports_ ```rust @@ -254,7 +254,7 @@ terminal.write("Some text\n Some text on new line"); ### Input Reading This module enables you to read user input events. -Good documentation could be found on the following places: [docs](https://docs.rs/crossterm_input/), [book](http://atcentra.com/crossterm/input.html), [examples](https://github.com/TimonPost/crossterm/tree/master/examples/key_events.rs) +Good documentation could be found on the following places: [docs](https://docs.rs/crossterm_input/), [book](https://timonpost.github.io/crossterm/docs/input.html), [examples](https://github.com/TimonPost/crossterm/tree/master/examples/key_events.rs) _available imports_ ```rust @@ -311,7 +311,7 @@ input.disable_mouse_mode().unwrap(); ``` ### Alternate and Raw Screen -These concepts are a little more complex and would take over the README, please checkout the [docs](https://docs.rs/crossterm_screen/), [book](http://atcentra.com/crossterm/screen.html), and [examples](https://github.com/TimonPost/crossterm/tree/master/examples). +These concepts are a little more complex and would take over the README, please checkout the [docs](https://docs.rs/crossterm_screen/), [book](https://timonpost.github.io/crossterm/docs/screen.html), and [examples](https://github.com/TimonPost/crossterm/tree/master/examples). ## Tested terminals diff --git a/crossterm_cursor/README.md b/crossterm_cursor/README.md index 43a1dcb..92ef05d 100644 --- a/crossterm_cursor/README.md +++ b/crossterm_cursor/README.md @@ -26,7 +26,7 @@ Other sub-crates are: - [Crossterm Screen](https://crates.io/crates/crossterm_screen) - [Crossterm Input](https://crates.io/crates/crossterm_input) -When you want to use other modules as well you might want to use crossterm with [feature flags](http://atcentra.com/crossterm/feature_flags.html). +When you want to use other modules as well you might want to use crossterm with [feature flags](https://timonpost.github.io/crossterm/docs/feature_flags.html). ## Table of contents: - [Getting started](#getting-started) diff --git a/crossterm_input/README.md b/crossterm_input/README.md index f1435ab..1899ed0 100644 --- a/crossterm_input/README.md +++ b/crossterm_input/README.md @@ -26,7 +26,7 @@ Other sub-crates are: - [Crossterm Screen](https://crates.io/crates/crossterm_screen) - [Crossterm Cursor](https://crates.io/crates/crossterm_cursor) -When you want to use other modules as well you might want to use crossterm with [feature flags](http://atcentra.com/crossterm/feature_flags.html). +When you want to use other modules as well you might want to use crossterm with [feature flags](https://timonpost.github.io/crossterm/docs/feature_flags.html). ## Table of contents: - [Getting started](#getting-started) @@ -61,7 +61,7 @@ pub use crossterm_input::{input, AsyncReader, InputEvent, KeyEvent, MouseButton, - [Documentation](https://docs.rs/crossterm_input/) - [Crates.io](https://crates.io/crates/crossterm_input) -- [Book](http://atcentra.com/crossterm/input.html) +- [Book](https://timonpost.github.io/crossterm/docs/input.html) - [Examples](./examples) ## Features diff --git a/crossterm_screen/README.md b/crossterm_screen/README.md index ae5560c..d537357 100644 --- a/crossterm_screen/README.md +++ b/crossterm_screen/README.md @@ -26,9 +26,9 @@ Other sub-crates are: - [Crossterm Input](https://crates.io/crates/crossterm_input) - [Crossterm Cursor](https://crates.io/crates/crossterm_cursor) -When you want to use other modules as well you might want to use crossterm with [feature flags](http://atcentra.com/crossterm/feature_flags.html). +When you want to use other modules as well you might want to use crossterm with [feature flags](https://timonpost.github.io/crossterm/docs/feature_flags.html). -In case you are wondering what 'alternate' or 'raw' screen is, you could checkout the [book](http://atcentra.com/crossterm/screen.html) describing this in more detail. +In case you are wondering what 'alternate' or 'raw' screen is, you could checkout the [book](https://timonpost.github.io/crossterm/docs/screen.html) describing this in more detail. ## Table of contents: - [Getting started](#getting-started) @@ -45,7 +45,7 @@ In case you are wondering what 'alternate' or 'raw' screen is, you could checkou This documentation is only for `crossterm_screen` version `0.2`. Also, check out the [examples](./examples) folders with detailed examples for all functionality of this crate -and the [book](http://atcentra.com/crossterm/screen.html) for more information about how to use the alternate or raw screen options. +and the [book](https://timonpost.github.io/crossterm/docs/screen.html) for more information about how to use the alternate or raw screen options. Add the `crossterm_screen` package to your `Cargo.toml` file. @@ -66,7 +66,7 @@ pub use crossterm_screen::{AlternateScreen, RawScreen}; - [Documentation](https://docs.rs/crossterm_screen/) - [Crates.io](https://crates.io/crates/crossterm_screen) -- [Book](http://atcentra.com/crossterm/screen.html) +- [Book](https://timonpost.github.io/crossterm/docs/screen.html) - [Examples](./examples) ## Features diff --git a/crossterm_style/README.md b/crossterm_style/README.md index 15a5b1d..9cfd8b4 100644 --- a/crossterm_style/README.md +++ b/crossterm_style/README.md @@ -26,7 +26,7 @@ Other sub-crates are: - [Crossterm Screen](https://crates.io/crates/crossterm_screen) - [Crossterm Cursor](https://crates.io/crates/crossterm_cursor) -When you want to use other modules as well you might want to use crossterm with [feature flags](http://atcentra.com/crossterm/feature_flags.html). +When you want to use other modules as well you might want to use crossterm with [feature flags](https://timonpost.github.io/crossterm/docs/feature_flags.html). ## Table of contents: - [Getting started](#getting-started) @@ -62,7 +62,7 @@ pub use crossterm_style::{color, style, Attribute, Color, ColorType, ObjectStyle - [Documentation](https://docs.rs/crossterm_input/) - [Crates.io](https://crates.io/crates/crossterm_input) -- [Book](http://atcentra.com/crossterm/styling.html) +- [Book](https://timonpost.github.io/crossterm/docs/styling.html) - [Examples](./examples) ## Features @@ -77,7 +77,7 @@ These are the features of this crate: - Background Color (16 base colors) - 256 (ANSI) Color Support (Windows 10 and UNIX Only) - RGB Color Support (Windows 10 and UNIX only) - - Text Attributes: bold, italic, underscore and crossed word and [more](http://atcentra.com/crossterm/styling.html#attributes) (Windows 10 and UNIX only) + - Text Attributes: bold, italic, underscore and crossed word and [more](https://timonpost.github.io/crossterm/docs/styling.html#attributes) (Windows 10 and UNIX only) ## Examples The [examples](./examples) folder has more complete and verbose examples. diff --git a/crossterm_terminal/README.md b/crossterm_terminal/README.md index e0968c9..ffb94b1 100644 --- a/crossterm_terminal/README.md +++ b/crossterm_terminal/README.md @@ -26,7 +26,7 @@ Other sub-crates are: - [Crossterm Screen](https://crates.io/crates/crossterm_screen) - [Crossterm Cursor](https://crates.io/crates/crossterm_cursor) -When you want to use other modules as well you might want to use crossterm with [feature flags](http://atcentra.com/crossterm/feature_flags.html). +When you want to use other modules as well you might want to use crossterm with [feature flags](https://timonpost.github.io/crossterm/docs/feature_flags.html). ## Table of contents: - [Getting started](#getting-started)