toml-parser alternatives and similar packages
Based on the "Language" category.
Alternatively, view toml-parser alternatives based on common mentions on social networks and blogs.
-
stylish-haskell
DISCONTINUED. Haskell code prettifier [Moved to: https://github.com/haskell/stylish-haskell] -
ministg
Ministg is an interpreter for a high-level, small-step, operational semantics for the STG machine.
SaaSHub - Software Alternatives and Reviews
* 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 toml-parser or a related project?
README
toml-parser
This package provides a complete and light-weight parser for the TOML configuration language. TOML is specified by https://github.com/toml-lang/toml. This language is designed to be easy to understand and unambiguous.
This implementation uses Alex and Happy to generate an efficient lexer and parser. The code is fully commented and should be useful as an example of how to use these tools to parse other languages.
Example
# This is a TOML document.
title = "Example document"
[section]
string = "hello, world"
integers = [0, +1, -2, 3_333_333]
float = 4.2e10
inlinemap = { x = 1, y = 'two' }
[nesting]
[nesting.first]
longstring = """multiline "string" syntax"""
longquote = '''escapes \not \interpreted'''
[nesting.second]
datetime = 2017-05-04T12:13:14Z
lookinggood = true
Contact Information
Please contact me via GitHub or on the #haskell IRC channel on irc.freenode.net