mirror of
https://github.com/rabirabirara/obsidian-jelly-snippets.git
synced 2026-07-22 07:30:22 +00:00
feat: add Space to symbol list
This commit is contained in:
parent
6b6787a552
commit
7e1c6f7954
1 changed files with 2 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ export enum Symbol {
|
|||
// on parse
|
||||
Newline = "%\\n",
|
||||
Tab = "%\\t",
|
||||
Space = "%\\s",
|
||||
// on replace
|
||||
CursorEnd = "%\\e",
|
||||
}
|
||||
|
|
@ -12,6 +13,7 @@ export namespace Symbol {
|
|||
const REPLACEABLE: Record<string, string> = {
|
||||
[Symbol.Newline]: "\n",
|
||||
[Symbol.Tab]: "\t",
|
||||
[Symbol.Space]: " ",
|
||||
};
|
||||
// const ON_REPLACE: Record<string, string> = {
|
||||
// [Symbol.CursorEnd]: "",
|
||||
|
|
|
|||
Loading…
Reference in a new issue