timhall
released this
Update VBA-UTC to v1.0.4 (fixes Mac 64-bit compilation error)
Assets
2
timhall
released this
Update VBA-UTC to v1.0.3 (fixes Mac 64-bit issue)
Assets
3
timhall
released this
- Update VBA-UTC to v1.0.2 (fixes offset and internationalization issues)
Assets
2
timhall
released this
Add optional Whitespace
argument to ConvertToJson
for "pretty" printing:
' (from readme example)
Debug.Print JsonConverter.ConvertToJson(Json)
' -> "{"a":123,"b":[1,2,3,4],"c":{"d":456,"e":789}}"
Debug.Print JsonConverter.ConvertToJson(Json, Whitespace:=2)
' ->
' {
' "a": 123,
' "b": [
' 1,
' 2,
' 3,
' 4
' ],
' "c": {
' "d": 456,
' "e": 789
' }
' }
Whitespace
can either be the number of spaces to use per indentation or a string to use (e.g. vbTab
)
Assets
2
timhall
released this
- Support
Empty
andNothing
inside Arrays, Collections, and Dictionaries
Assets
2
timhall
released this
- Fix internal reference to module name
Assets
2
timhall
released this
- Add options:
UseDoubleForLargeNumbers
,AllowUnquotedKeys
, andEscapeSolidus
- Breaking Solidus is no longer escaped by default in
ConvertToJson
, use the below to re-enable
JsonConverter.JsonOptions.EscapeSolidus = True