Releases: crowdagger/crowbook-text-processing
Releases · crowdagger/crowbook-text-processing
0.2.6
0.2.5
- Upgrade Regex dependency to 0.2.
0.2.4
- Removed debug println (oops sorry should have checked before
publishing previous release!)
0.2.3
- Fix the french formatting algorithm for short quotes.
- Change default
threshold_quote
value to 20.
0.2.2
- Fix possible
character boundary
panic inclean::quotes
.
0.2.1
- Added a binary, so it can be used interactively.
- Added
clean::dashes
that replaces--
to–
and---
to—
. - Added
clean::guillemets
that replaces<<
to«
and>>
to»
.
0.2.0
Breaking changes as the API was modified:
- The module
french
is no longer public, onlyFrenchFormatter
is. typographic_quotes
has been renamedquotes
and is no longer
directly exported, useclean::quotes
.remove_whitespaces
has been renamedwhitespaces
and is no longer
directly exported, useclean::whitespaces
.ellipsis
is no longer directly exported, useclean::ellipsis
.escape_html
has been renamedhtml
and is no longer directly
exported, useescape::html
.escape_tex
has been renamedtex
and is no longer directly
exported, useescape::tex
.escape_nb_spaces
has been renamednb_spaces
and is no longer directly
exported, useescape::nb_spaces
.escape_nb_spaces_tex
has been renamednb_spaces_tex
and is no longer directly
exported, useescape::nb_spaces_tex
.escape_quotes
has been renamedquotes
and is no longer directly
exported, useescape::quotes
.
0.1.6
- Enhanced
typographic_quotes
's heuristics, and added more tests. - Added
ellpisis
function, and use it for inFrenchFormatter
.
0.1.5
- Enhanced
typographic_quotes
's heuristics.
0.1.4
- Added
typographic_quotes
function. - Made
FrenchFormatter
use it by default (can be disabled by setting
typographic_quotes
to false).