Update readme

This commit is contained in:
Victor Zverovich 2018-03-21 06:16:13 -07:00
parent e8aa0f3315
commit 84e520b79c

View File

@ -12,8 +12,7 @@
:target: https://gitter.im/fmtlib/fmt :target: https://gitter.im/fmtlib/fmt
**{fmt}** is an open-source formatting library for C++. **{fmt}** is an open-source formatting library for C++.
It can be used as a safe alternative to printf or as a fast It can be used as a safe and fast alternative to (s)printf and IOStreams.
alternative to IOStreams.
`Documentation <http://fmtlib.net/latest/>`_ `Documentation <http://fmtlib.net/latest/>`_
@ -23,16 +22,11 @@ This is a development branch, released versions are available from the
Features Features
-------- --------
* Two APIs: faster concatenation-based `write API * Replacement-based `format API <http://fmtlib.net/dev/api.html>`_ with
<http://fmtlib.net/latest/api.html#write-api>`_ and slower, but still very positional arguments for localization.
fast, replacement-based `format API * `Format string syntax <http://fmtlib.net/dev/syntax.html>`_ similar to the one
<http://fmtlib.net/latest/api.html#format-api>`_ with positional arguments for of `str.format <https://docs.python.org/2/library/stdtypes.html#str.format>`_
localization. in Python.
* Write API similar to the one used by IOStreams but stateless allowing faster
implementation.
* Format API with `format string syntax <http://fmtlib.net/latest/syntax.html>`_
similar to the one used by `str.format
<https://docs.python.org/2/library/stdtypes.html#str.format>`_ in Python.
* Safe `printf implementation * Safe `printf implementation
<http://fmtlib.net/latest/api.html#printf-formatting-functions>`_ including <http://fmtlib.net/latest/api.html#printf-formatting-functions>`_ including
the POSIX extension for positional arguments. the POSIX extension for positional arguments.