@@ -24,23 +24,23 @@ Try {fmt} in [Compiler Explorer](https://godbolt.org/z/8Mx1EW73v).
2424
2525# Features
2626
27- - Simple [ format API] ( https://fmt.dev/latest/api.html ) with positional
27+ - Simple [ format API] ( https://fmt.dev/latest/api/ ) with positional
2828 arguments for localization
2929- Implementation of [ C++20
3030 std::format] ( https://en.cppreference.com/w/cpp/utility/format ) and
3131 [ C++23 std::print] ( https://en.cppreference.com/w/cpp/io/print )
32- - [ Format string syntax] ( https://fmt.dev/latest/syntax.html ) similar
32+ - [ Format string syntax] ( https://fmt.dev/latest/syntax/ ) similar
3333 to Python\' s
3434 [ format] ( https://docs.python.org/3/library/stdtypes.html#str.format )
3535- Fast IEEE 754 floating-point formatter with correct rounding,
3636 shortness and round-trip guarantees using the
3737 [ Dragonbox] ( https://github.com/jk-jeon/dragonbox ) algorithm
3838- Portable Unicode support
3939- Safe [ printf
40- implementation] ( https://fmt.dev/latest/api.html #printf-formatting )
40+ implementation] ( https://fmt.dev/latest/api/ #printf-formatting )
4141 including the POSIX extension for positional arguments
4242- Extensibility: [ support for user-defined
43- types] ( https://fmt.dev/latest/api.html #formatting-user-defined-types )
43+ types] ( https://fmt.dev/latest/api/ #formatting-user-defined-types )
4444- High performance: faster than common standard library
4545 implementations of ` (s)printf ` , iostreams, ` to_string ` and
4646 ` to_chars ` , see [ Speed tests] ( #speed-tests ) and [ Converting a
@@ -58,8 +58,8 @@ Try {fmt} in [Compiler Explorer](https://godbolt.org/z/8Mx1EW73v).
5858 buffer overflow errors
5959- Ease of use: small self-contained code base, no external
6060 dependencies, permissive MIT
61- [ license] ( https://github.com/fmtlib/fmt/blob/master/LICENSE.rst )
62- - [ Portability] ( https://fmt.dev/latest/index.html #portability ) with
61+ [ license] ( https://github.com/fmtlib/fmt/blob/master/LICENSE )
62+ - [ Portability] ( https://fmt.dev/latest/#portability ) with
6363 consistent output across platforms and support for older compilers
6464- Clean warning-free codebase even on high warning levels such as
6565 ` -Wall -Wextra -pedantic `
@@ -243,7 +243,7 @@ header-only library so it doesn\'t provide any linkage options.
243243## Running the tests
244244
245245Please refer to [ Building the
246- library] ( https://fmt.dev/latest/usage.html #building-the-library ) for
246+ library] ( https://fmt.dev/latest/get-started/ #building-from-source ) for
247247instructions on how to build the library and run the unit tests.
248248
249249Benchmarks reside in a separate repository,
@@ -297,7 +297,7 @@ converts to `std::print`.)
297297 underwater vehicle
298298- [ Drake] ( https://drake.mit.edu/ ) : a planning, control, and analysis
299299 toolbox for nonlinear dynamical systems (MIT)
300- - [ Envoy] ( https://lyft. github.io/envoy/ ) : C++ L7 proxy and
300+ - [ Envoy] ( https://github.com/envoyproxy/envoy ) : C++ L7 proxy and
301301 communication bus (Lyft)
302302- [ FiveM] ( https://fivem.net/ ) : a modification framework for GTA V
303303- [ fmtlog] ( https://github.com/MengRao/fmtlog ) : a performant
@@ -456,7 +456,7 @@ second](http://www.zverovich.net/2020/06/13/fast-int-to-string-revisited.html).
456456
457457# Documentation License
458458
459- The [Format String Syntax](https://fmt.dev/latest/syntax.html ) section
459+ The [Format String Syntax](https://fmt.dev/latest/syntax/ ) section
460460in the documentation is based on the one from Python [string module
461461documentation](https://docs.python.org/3/library/string.html#module-string).
462462For this reason, the documentation is distributed under the Python
0 commit comments