summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--03-lexical-syntax.md7
-rw-r--r--_config.yml10
2 files changed, 13 insertions, 4 deletions
diff --git a/03-lexical-syntax.md b/03-lexical-syntax.md
index 0e9cc0b495..a64877e0ee 100644
--- a/03-lexical-syntax.md
+++ b/03-lexical-syntax.md
@@ -7,12 +7,11 @@ tag: lexical
# Lexical Syntax
Scala programs are written using the Unicode Basic Multilingual Plane
-( _BMP_ ) character set; Unicode supplementary characters are not
+(_BMP_) character set; Unicode supplementary characters are not
presently supported. This chapter defines the two modes of Scala's
-lexical syntax, the Scala mode and the _XML_ mode. If not
+lexical syntax, the Scala mode and the _XML mode_. If not
otherwise mentioned, the following descriptions of Scala tokens refer
-to Scala mode, and literal characters `‘c’` refer to the ASCII fragment
-`\u0000` – `\u007F`.
+to _Scala mode_, and literal characters `‘c’` refer to the ASCII fragment `\u0000` – `\u007F`.
In Scala mode, _Unicode escapes_ are replaced by the corresponding
Unicode character with the given hexadecimal code.
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000000..300324a8fe
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,10 @@
+safe: true
+lsi: false
+highlighter: pygments
+markdown: redcarpet3
+encoding: utf-8
+redcarpet:
+ extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data", "strikethrough", "lax_spacing", "space_after_headers", "superscript"]
+
+# baseurl: /my-site-name
+# permalink: /docs/:title.html \ No newline at end of file