Victor Zverovich
f7a4b4ab91
Make numeric alignment optional
2019-09-06 09:43:53 -07:00
Victor Zverovich
fe642d7648
Clarify use of the core API in header-only mode ( #1296 )
2019-09-02 17:14:30 -07:00
Victor Zverovich
d1dd9d5327
Document floating-point n specifier ( #1291 )
2019-08-31 08:16:47 -07:00
Victor Zverovich
3f75e2b69e
Make buffer_range public and update custom formatting docs ( #1281 )
2019-08-28 06:50:20 -07:00
Victor Zverovich
7512a55aa3
Update version
2019-08-26 06:23:37 -07:00
Victor Zverovich
5a4b24613b
Update the default floating-point format docs ( #1270 )
2019-08-22 15:21:14 -07:00
Samuel Debionne
2aae6b120c
Fix doc for importing header only target with CMake
2019-08-14 13:59:15 -07:00
Kais Ben Salah
d0f2f3b816
Update usage.rst
2019-07-27 20:25:40 +03:00
Jonathan Wakely
1235f0a24a
Fix typo in usage.rst
2019-07-24 15:54:02 +02:00
Victor Zverovich
a3a74672a0
Update signatures
2019-07-09 17:05:34 -07:00
Victor Zverovich
c11e68305f
Update signatures
2019-07-09 17:01:13 -07:00
Victor Zverovich
3eff8f94d2
Update docs
2019-06-05 06:24:18 -07:00
Victor Zverovich
4aa0dc578b
Fix docs
2019-06-04 18:02:55 -07:00
Victor Zverovich
1530242551
Fix signature in the docs
2019-06-03 17:35:15 -07:00
Victor Zverovich
7e42c65bb6
Document a more useful to_string_view overload
2019-06-03 11:57:33 -07:00
Victor Zverovich
1e6e87cb74
Update docs
2019-06-03 11:35:12 -07:00
Victor Zverovich
0c6a6e0250
Get rid of the FILE* hack and reword apidocs
2019-06-03 10:27:00 -07:00
Victor Zverovich
634f707f2b
Simplify char_t and remove msvc2013 from CI
2019-05-31 19:28:37 -07:00
Victor Zverovich
9b3c24b99b
One weird trick to simplify docs; doxygen hates it
2019-05-29 21:09:43 -07:00
Victor Zverovich
afc571aedc
Document join and relax its compiler requirements
2019-05-29 11:21:05 -07:00
Victor Zverovich
2346779d6b
More documentation fixes
2019-05-18 09:30:36 -07:00
Victor Zverovich
afc1a74a6c
Minor documentation fixes
2019-05-18 09:10:17 -07:00
Victor Zverovich
ad0eade471
Remove MSVC nonsense
2019-05-18 09:05:19 -07:00
Victor Zverovich
28c187bcd7
Capitalize titles
2019-05-18 08:56:49 -07:00
Victor Zverovich
91bb3aaf06
fmtlib.net -> fmt.dev
2019-05-17 15:42:00 -07:00
Billy Donahue
f569c1ba28
doc fix: time -> chrono
...
Change refs to fmt/time.h -> fmt/chrono.h
RST label rename time-api -> chrono-api
2019-04-12 14:51:32 -07:00
Victor Zverovich
a4969ebe06
Link to fmt(...) docs from index
2019-04-10 19:22:10 -07:00
Victor Zverovich
918ab77baa
Try fixing doc build
2019-04-06 10:04:56 -07:00
Tommy Nguyen
b588d7f35f
Fix a couple of deprecated things.
2019-04-04 16:26:22 -07:00
Victor Zverovich
17c6900f83
Update docs
2019-03-17 14:15:48 -07:00
Victor Zverovich
ec645ca262
Update readme and doxygen config
2019-03-16 10:47:50 -07:00
Victor Zverovich
5466a5b41f
Document inherited members
2019-03-16 08:22:16 -07:00
Gawain Bolton
2d981bb133
Add documentation for '%' format type. ( #1071 )
2019-03-06 11:50:32 -10:00
Victor Zverovich
4e5694fd05
Update arg signature
2019-02-21 17:38:30 -10:00
Victor Zverovich
bf6529f2ce
Update docs
2019-01-30 06:07:59 -08:00
Victor Zverovich
06c005b7b0
Clarify that compile-time checks don't support named arguments
2019-01-27 10:10:13 -08:00
Victor Zverovich
1b8a216ddf
Improve docs
2018-12-28 15:05:42 -08:00
Victor Zverovich
9e554999ce
Update version
2018-12-28 12:31:41 -08:00
Victor Zverovich
587a7f6634
Update changelog and docs
2018-12-24 10:56:13 -08:00
Victor Zverovich
130e412b64
Update changelog and docs
2018-12-24 09:37:52 -08:00
HecticSerenity
61ad543c3e
Windows .sln filename changed from FORMAT to FMT
2018-12-14 07:50:54 -08:00
Victor Zverovich
37f599b1a1
Fix docs
2018-12-12 17:50:50 -08:00
Victor Zverovich
2b2cfdac19
Update docs
2018-11-28 12:53:09 -08:00
Victor Zverovich
36161284e2
Update docs
2018-10-28 09:28:51 -07:00
Victor Zverovich
38f355d87b
Revert "find sphinx-build before calling build.py"
...
This reverts commit 07200f445a
because
the latter doesn't work with virtualenv correctly.
2018-10-28 09:26:21 -07:00
Victor Zverovich
4373153800
Update usage.rst
2018-10-27 12:59:51 -07:00
Kefu Chai
10e03e695b
use found python executable for launching sphinx-build
...
there is chance that the distro install python as python3, in that case
the shebang of
```
```
in build.py won't work.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
2018-10-13 09:14:53 -07:00
Kefu Chai
07200f445a
find sphinx-build before calling build.py
...
this allows us to use sphinx-build-3, as user might already in a python3
world, and distros, like fedora 28, tend to add a "-3" suffix to sphinx-build.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
2018-10-13 09:14:53 -07:00
Dmitry Petrashko
167f8fe325
Fix a typo in api.rst
2018-10-10 10:51:43 -07:00
Victor Zverovich
7bebb3e128
Clarify overload resolution in docs
2018-10-10 09:41:46 -07:00