xaviersolau/BlazorJsonLocalization

Multi-line json string support

Closed this issue · 0 comments

Allow to use multi-line string in Json resource file.

For example instead of

{
  "Key" : "Multi-line\n Value"
}

We must be able to use

{
  "Key" : [
    "Multi-line",
    " Value"
  ]
}