fluent-syntax 0.9.2

Parser/Serializer tools for Fluent Syntax.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# OK (tab after = is part of the value)
key01 =	Value 01

# Error (tab before =)
key02	= Value 02

# Error (tab is not a valid indent)
key03 =
	This line isn't properly indented.

# Partial Error (tab is not a valid indent)
key04 =
    This line is indented by 4 spaces,
	whereas this line by 1 tab.