Commit b4d0646f authored by Jason Fox's avatar Jason Fox
Browse files

Formatting.

parent 74dcd362
Loading
Loading
Loading
Loading
+30 −6
Original line number Diff line number Diff line
@@ -815,7 +815,11 @@ The Query Term value, [description[​fr]=="pain"]{.HTML-Cod
   ["pain"]{.HTML-Code} corresponds to the key ["fr"]{.HTML-Code}

```json
[{"fr": "pain", "en": "bread", "de": "Brot"}]
{
  "de": "Brot",
  "en": "bread",
  "fr": "pain"
}
```

-  Does not match to the _`languageMap`_ below as the value
@@ -823,21 +827,33 @@ The Query Term value, [description[​fr]=="pain"]{.HTML-Cod
   the key ["fr"]{.HTML-Code}

```json
[{"fr": "douleur", "en": "pain", "de": "Schmerz"}]
{
  "de": "Schmerz",
  "en": "pain",
  "fr": "douleur"
}
```

-  Matches to the _`languageMap`_  below as the value
   ["pain"]{.HTML-Code} corresponds an element withn the key ["fr"]{.HTML-Code}

```json
[{"fr": ["pain", "fromage"], "en": ["bread", "cheese"], "de": ["Brot", "Käse"]}]
{
  "de": ["Brot", "Käse"],
  "en": ["bread", "cheese"],
  "fr": ["pain", "fromage"]
}
```

-  Does not match to the _`languageMap`_ below as the value
   ["pain"]{.HTML-Code} does not correspond to an element within the key ["fr"]{.HTML-Code}

```json
[{"fr": ["plaisir", "douleur"], "en": ["pleasure", "pain"], "de": ["Vergnügen", "Schmerz"]}]
{
  "de": ["Vergnügen", "Schmerz"],
  "en": ["pleasure", "pain"],
  "fr": ["plaisir", "douleur"]
}
```

>>>
@@ -861,14 +877,22 @@ The Query Term value, [description[\*]=="pain"]{.HTML-Code}
-  Matches to the _`languageMap`_ below as the value ["pain"]{.HTML-Code} can be found.

```json
[{"fr": "pain", "en": "bread", "de": "Brot"}]
{
  "de": "Brot",
  "en": "bread",
  "fr": "pain"
}
```

-  Also Matches to the _`languageMap`_  below as the value ["pain"]{.HTML-Code} can be found as an element
   of an array.

```json
[{"fr": ["plaisir", "douleur"], "en": ["pleasure", "pain"], "de": ["Vergnügen", "Schmerz"]}]
{
  "de": ["Vergnügen", "Schmerz"],
  "en": ["pleasure", "pain"],
  "fr": ["plaisir", "douleur"]
}
```

>>>