fuzzy alternatives and similar packages
Based on the "Text" category.
Alternatively, view fuzzy alternatives based on common mentions on social networks and blogs.
-
pandoc-citeproc
Library and executable for using citeproc with pandoc -
prettyprinter
A modern, extensible and well-documented prettyprinter. -
scholdoc
Fork of Pandoc for the implementation of a ScholarlyMarkdown parser -
blaze-from-html
A blazingly fast HTML combinator library for Haskell. -
skylighting
A Haskell syntax highlighting library with tokenizers derived from KDE syntax highlighting descriptions -
commonmark
Pure Haskell commonmark parsing library, designed to be flexible and extensible -
regex-genex
Given a list of regexes, generate all possible strings that matches all of them. -
regex-applicative
Regex-based parsing with an applicative interface -
pandoc-csv2table
A Pandoc filter that renders CSV as Pandoc Markdown Tables. -
servant-checked-exceptions
type-level errors for Servant APIs. -
double-conversion
A fast Haskell library for converting between double precision floating point numbers and text strings. It is implemented as a binding to the V8-derived C++ double-conversion library. -
text-format
A Haskell text formatting library optimized for ease of use and high performance. -
diagrams-pandoc
A pandoc filter to express diagrams inline using the haskell EDSL diagrams.
Learn any GitHub repo in 59 seconds
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of fuzzy or a related project?
Popular Comparisons
README
fuzzy
Fuzzy string search library in Haskell. Uses TextualMonoid
from monoid-subclasses
to be able to run on different types of strings.
Ported from the JavaScript equivalent mattyork/fuzzy.
Installation
cabal install fuzzy
Usage
> import Text.Fuzzy
> match "fnt" "infinite" "" "" id True
Just ("infinite",3)
> match "hsk" ("Haskell",1995) "<" ">" fst False
Just ("<h>a<s><k>ell",5)
> filter "ML" [("Standard ML", 1990),("OCaml",1996),("Scala",2003)] "<" ">" fst False
[Fuzzy {original = ("Standard ML",1990), rendered = "standard <m><l>", score = 4},Fuzzy {original = ("OCaml",1996), rendered = "oca<m><l>", score = 4}]
> simpleFilter "vm" ["vim", "emacs", "virtual machine"]
["vim","virtual machine"]
> test "brd" "bread"
True
License
MIT
*Note that all licence references and agreements mentioned in the fuzzy README section above
are relevant to that project's source code only.