From b813f80bbe1e9249f312a153f9316f3aa2894660 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Wed, 1 Jun 2022 21:38:15 -0400 Subject: Add help pages and keybar entries for quote characters --- docs/help/character.html | 13 +++++++++++++ docs/help/index.html | 8 ++++++++ docs/help/string.html | 16 ++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 docs/help/character.html create mode 100644 docs/help/string.html (limited to 'docs/help') diff --git a/docs/help/character.html b/docs/help/character.html new file mode 100644 index 00000000..7a29a0f5 --- /dev/null +++ b/docs/help/character.html @@ -0,0 +1,13 @@ + + + + BQN: Single Quote (') + + +

Single Quote (')

+

'c': Character

+

→full documentation

+

A character literal whose value is the character between quotes. Any character can be used, even ' and newline.

+↗️
    'a''b'
+"ab"
+
diff --git a/docs/help/index.html b/docs/help/index.html index 46b5e791..d6110440 100644 --- a/docs/help/index.html +++ b/docs/help/index.html @@ -381,5 +381,13 @@ # Comment + +' +Character + + +" +String + diff --git a/docs/help/string.html b/docs/help/string.html new file mode 100644 index 00000000..d7d1e74a --- /dev/null +++ b/docs/help/string.html @@ -0,0 +1,16 @@ + + + + BQN: Double Quote (") + + +

Double Quote (")

+

"str": String

+

→full documentation

+

Literal notation for a string, or list of characters. Double quotes must be escaped by writing them twice. Any other characters can be included directly.

+↗️
    2  "string"
+'r'
+
+    2  "ab""cd"
+'"'
+
-- cgit v1.2.3