Usage -> Get Started

This commit is contained in:
Victor Zverovich 2024-06-05 07:59:06 -07:00
parent 966a1b3d44
commit 0a555818d7
3 changed files with 5 additions and 5 deletions

View File

@ -45,7 +45,7 @@ surrounded by braces `{}`. The fields are replaced with formatted arguments
in the resulting string. [`fmt::format_string`](#format_string) is a format
string which can be implicitly constructed from a string literal or a
`constexpr` string and is checked at compile time in C++20. To pass a runtime
format string wrap it in [fmt::runtime](#runtime).
format string wrap it in [`fmt::runtime`](#runtime).
*args* is an argument list representing objects to be formatted.

View File

@ -1,12 +1,12 @@
# Usage
# Get Started
To use the {fmt} library, add `fmt/core.h`, `fmt/format.h`, `fmt/format-inl.h`,
`src/format.cc` and optionally other headers from a [release archive](
https://github.com/fmtlib/fmt/releases/latest) or the [git repository](
https://github.com/fmtlib/fmt) to your project. Alternatively, you can
[build the library with CMake](#building).
build the library with CMake.
## Building the Library {#building}
## Building the Library
The included [CMake build
script](https://github.com/fmtlib/fmt/blob/master/CMakeLists.txt) can be

View File

@ -36,7 +36,7 @@ plugins:
default_handler: cxx
nav:
- Home: index.md
- Usage: usage.md
- Get Started: get-started.md
- API: api.md
- Syntax: syntax.md