blob: d2b50e554287db7d73e55f6d5038410357b7a412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
"I am quoted: ~ " : "Here is another quote."
list with quoted string values :
- "1 2 3"
- "null"
- "true"
- "false"
- "#hashtag"
- "\"quoted inside\""
- "'single quote inside'"
- "Japan's finest beer"
'single quoted string values' :
- '8.8.8.8'
- '''single quote inside'''
- 'prefix ''quoted'' suffix'
- '"double quote"'
- 'before "quote" after'
- 'http://www.google.com'
- '''''''' # equivalent of "'''"
- ' '' '' '' ' # equivalent of " ' ' ' "
- '#hashtag'
|