You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -53,29 +54,65 @@ For ease access, in the editor, the color button will appear after the opening d
53
54
54
55
### 2. Block Formatting
55
56
56
-
Currenty, this plugin only support one type of block syntax, that's Pandoc-style fenced div.
57
+
Currenty, this plugin only support one type of block syntax, that's Pandoc-style fenced div (with some modifications).
57
58
58
59
```markdown
59
60
::: my-class-1 my-class-2
60
61
This is fenced div content.
61
62
```
62
63
63
-
But it has been modified in this plugin to become a way more restricted, avoiding conflict with the built-in syntax. So, you will only need an opening delimiter to start this format in the concerned text. Optionally, you can insert a tag containing your own classes, which then can be styled through the CSS snippet.
64
+
But it has been modified in this plugin to become a way more restricted, avoiding conflict with the built-in syntax. So, you will only need an opening delimiter to start this format in the concerned text (closing delimiter isn't needed). Optionally, you can insert a tag containing your own classes, which then can be styled through the CSS snippet.
65
+
66
+
For example:
67
+
68
+
```css
69
+
/* Your CSS snippet */
70
+
.align-center {
71
+
text-align: center;
72
+
}
73
+
74
+
.medium-size {
75
+
font-size: 24px;
76
+
}
77
+
78
+
.monospace {
79
+
font-family: monospace;
80
+
}
81
+
```
82
+
83
+
You can apply those rules above like this.
84
+
85
+
```markdown
86
+
::: align-center medium-size monospace
87
+
Center-aligned text
88
+
with medium font size and monospace style.
89
+
```
64
90
65
91
> [!Note]
66
92
>
67
93
> Custom align no longer available in this plugin, because it is already covered by the fenced div.
68
94
69
-
### 3. Altering the Settings
95
+
### 3. Commands and Context Menu
96
+
97
+
This plugin provides commands to toggle each formatting type on and off, also commands to show the color and tag menu for each of highlight, custom span, and fenced div. You can set the keymap for each of them through "Hotkeys" in the settings.
98
+
99
+
This plugin also adds functionality of all those commands (except for fenced div) to the context menu, by right-clicking on the editor and choosing "More format" (below "Insert" in the formatting section).
100
+
101
+
Mimicking how Obsidian formats the text, this plugin brings an ability to do "tidier" formatting. That means that the plugin will try to format the whole word that touches the cursor. So, you don't need to select all over the word. But, if you still want the formatting to behave like normal auto-wrap, you toggle off "Tidier formatting" in the settings.
70
102
71
-
Because some syntax may not be required, or just simply you don't want to use it, this plugin provides ability to turn specific syntax off. Also, this plugin give some option to turn those off only in one mode (either editor or preview mode), gives you more freely and flexible choice depend on your needs.
103
+
### 4. Tweaking the Settings
104
+
105
+
Because some syntax may not be required, or just simply you don't want to use it, this plugin provides ability to turn specific syntax off under the "Syntax switch" section. Also, this plugin give some option to turn those off only in one mode (either editor or preview mode), gives you more freely and flexible choice depend on your needs.
72
106
73
107
Moreover, the tag display behaviour of the highlight, custom span, and fenced div can be configured through the "Tag display behaviour" section. If you don't want the tag to be hidden, you can set it to "Always visible" in the live-preview mode, or toggle it on in the preview mode.
74
108
75
-
Along with the latest version, this plugin provides a way for tweaking the custom highlight, without exhaustingly bring the CSS snippet into it. In the "Customize highlight" section, you can adjust:
109
+
This plugin provides a way for tweaking the highlight, without exhaustingly bring the CSS snippet into it. In the "Custom highlight" section, you can adjust:
76
110
- visibilty of the color button,
77
111
- the opacity of the highlight color for each light mode and dark mode, range from 0 to 1 (zero means that the highlight will be fully transparent),
78
-
- the list of the custom colors, by adding the new one, changing their color and their tag string, or deleting them, - - also, it is equipped with ability to change the name, arrange, and decide the colors to be displayed in the color menu.
112
+
- the list of the color palattes, by adding the new one, changing their color and their tag string, or deleting them,
113
+
- also, it is equipped with ability to change the name, arrange, and decide the colors to be displayed in the color menu.
114
+
115
+
Along with the latest version, you can add some predefined tags to the custom span and fenced div (under the "Custom span" and "Fenced div" sections), so those will be displayed in the tag menu. These features behave like the color palattes in the "Custom highlight", except you have to manually set the style rules within the CSS snippet manually if you want to give each tag some styles.
79
116
80
117
For the last section, the "Others" section, you can choose:
81
118
- whether the delimiter can be escaped by backslash or not (editor only), and
@@ -87,149 +124,7 @@ For the last section, the "Others" section, you can choose:
87
124
88
125
## Syntax Rules
89
126
90
-
To make clear and avoid ambiguity, some rules are applied to the syntax.
91
-
92
-
#### 1. General Rules for All Syntax
93
-
94
-
- Any built-in syntax from Obsidian has a higher precedence than that in this plugin.
95
-
96
-
#### 2. General Rules for Inline Syntax (Insertion, Spoiler, Superscript, Subscript, Highlight Color Tag, Custom Span)
97
-
98
-
- Opening delimiter must not be followed by any whitespace character (regular space, tab, and new line), and the closing one must not be preceded by any whitespace character.
99
-
- Delimiter must satisfy its requiered length as will be explained later, and must not be preceded or followed by the same character as the delimiter, or the same non-escaped if configured for that.
100
-
- (Editor only, can be altered through the settings) Delimiter must not be escaped, if it was configured to not be escaped, by a backslash. Otherwise, it will act as literal character.
101
-
- Formatting only occurs when opening delimiter met its closing (doesn't include highlight).
102
-
- Content text, that is surrounded by delimiters, must at least one character.
103
-
- Content text must not have two or more new line character.
104
-
105
-
For better understanding, the table below can give some example applying those rules:
|`++ins++``++ins also++`|`++ not ins++`, `++not ins``++not ins ++``+++not ins++`|
126
-
|`\|\|spoiler\|\|``\|\|spoiler also\|\|`|`\|\| not spoiler\|\|`, `\|\|not spoiler \|\|``\|\|not spoiler\|`|
127
-
128
-
#### 4. Rules for Superscript and Subscript
129
-
130
-
- Superscript is defined as text consist at least one character surrounded by only single caret (`^`) on each side, and must not contain any of whitespace character.
131
-
- Subscript act like superscript, it's just use single tilde as delimiter.
132
-
- Thus, insertion and spoiler allow its content to have any whitespace character. It's contasts with the case of superscript and subscript.
- Custom span use the same rules as insertion and spoiler, except it uses double exclamation marks on each side to wrap its content.
142
-
- It also comes with a tag you can insert a class or classes into. The tag consists alphanumeric character(s), hyphen(s), and space(s) (at least one character), wrapped by curly brackets on each side. A space is treated as a devider between classes. Other character inserted before or within the tag will disable it, so it will be stated as invalid tag.
Later on, you can add corresponding class in your CSS snippet. For instance, if you type `!!{my-class strong-text}My text!!`, it will be rendered in HTML as `<span class="my-class strong-text">My text</span>` (with additional `cm-custom-span` class in the editor, and `custom-span` in the preview).
150
-
151
-
#### 6. Rules for Highlight Color Tag
152
-
153
-
The color of each highlight can be customized by adding color tag exactly after its opening delimiter. The tag behaves like the custom span tag, except it doesn't allow any space within it.
Valid color tag will be added in the highlight classes, so `=={red}Red==` will be parsed in html tag as **`<span class="cm-custom-highlight cm-custom-highlight-red">`** in editor and **`<mark class="custom-highlight custom-highlight-red">`** in preview mode.
161
-
162
-
#### 7. NOTE: Delimiter Escaping
163
-
164
-
As already explained, using escaper backslash can change the semantic meaning to that being escaped. Escaped punctuation is treated as regular character that doesn't have functional use. This applies to those delimiters when "Delimiter escaping" option is switched on.
165
-
166
-
```
167
-
++insertion++ \++not insertion\++ in editor mode
168
-
```
169
-
170
-
However, we can only apply this feature in editor mode, since escaped character being rendered as normal character without being wrapped by any tag (and it makes sense).
171
-
172
-
```
173
-
++insertion++ \++still insertion\++ \+\+still insertion\+\+, \+++not insertion+\++ in preview mode
174
-
```
175
-
176
-
Due to this condition, "Delimiter escaping" was turned of by default to maintain consistency between editor and preview mode.
177
-
178
-
#### 8. Pandoc-style Fenced Div
179
-
180
-
Since the align tag has been removed, as it is not as flexible as though, I decided to bring the plugin with Pandoc-style fenced div, which more flexible and intuitive for block customizing. Even though it is Pandoc-style, the implemented rule in this plugin is more restricted to avoid unnecessary broken layout and conflicts (or even worse).
181
-
182
-
- Fenced div must be opened by a line consists of three or more colons (`:::`), at must be located exactly in the line start.
183
-
- The colons may, and only, be followed by tag that consists of alphanumeric, hyphen, and space (can be empty).
184
-
- Other characters aren't allowed in the opening line. Even a colon that was inserted in the tag range will make the format invalid.
185
-
- It is only be closed by different context (e.g. list, blockquote), blank line, or the end of the document.
186
-
- You don't need to close the format with any delimiter.
187
-
188
-
```
189
-
:::
190
-
valid fenced div
191
-
192
-
::: my-class
193
-
also valid
194
-
195
-
:::my-class other-class
196
-
also
197
-
valid
198
-
```
199
-
200
-
#### 9. Context-aware Formatting
201
-
202
-
Any syntax that are written in the codespan, codeblock, math, comment, and wikilink don't apply the rules, so they are treated according to their context. Or, in the nutshell, they aren't formatted. This corresponds to the many of markdown implementation, as well as that implemented in Obsidian.
203
-
204
-
In addition in the editor, any formatting above doesn't overlapping its block context. So if a opening delimiter, i.e. double plus signs for insertion, was found in heading, and didn't meet any double plus signs but in the next line (which is paragraph for instance), then the second delimiter isn't treated as a closing for that opening.
205
-
206
-
Example below can give some better understanding:
207
-
208
-
Markdown:
209
-
> ```
210
-
> # Heading ++1
211
-
> The paragraph.++
212
-
>
213
-
> Another ++paragraph
214
-
> > Blockquote++
215
-
>
216
-
> 1. ++List
217
-
> 2. another list++
218
-
> 3. another ++list
219
-
> lazy continuation++
220
-
> ```
221
-
222
-
Expected result:
223
-
> <h1>Heading ++1</h1>
224
-
> The paragraph.++
225
-
>
226
-
> Another ++paragraph
227
-
> <blockquote>Blockquote++</blockquote>
228
-
>
229
-
> <ol><li>++List</li>
230
-
> <li>another list++</li>
231
-
> <li>another <ins>list
232
-
> <br>lazy continuation</ins></li></ol>
127
+
We move the explanation to [this page](./docs/rule.md).
233
128
234
129
## Installation
235
130
@@ -241,13 +136,11 @@ Expected result:
241
136
- Type "Extended Markdown Syntax" in the search box.
242
137
- Install and enable it.
243
138
- Manual
244
-
- Create a folder named `extended-markdown-parser` under `.obsidian/plugins`.
139
+
- Create a folder named `extended-markdown-parser` under `YOUR_VAULT_NAME/.obsidian/plugins`.
245
140
- Place `manifest.json`, `main.js`, and `style.css` from the latest release into the folder.
246
141
- Enable it through the "Community plugin" setting tab.
247
142
- Using [BRAT](https://github.com/TfTHacker/obsidian42-brat).
248
143
249
-
---
250
-
251
144
## FAQ's
252
145
253
146
### Is it working on the table and callout?
@@ -259,15 +152,15 @@ I tested it on a 250kB file and it's still working fine. This plugin also uses p
259
152
### Will it cause conflict with other plugins that concerns extending syntax?
260
153
It depends on what character the others use in their syntax.
261
154
262
-
## Features to be Implemented in The Future
155
+
## Roadmap
263
156
264
157
-[x] Enable/disable formatting in settings
265
158
-[x] Applicable on mobile
266
159
-[x]~~Fixing paragraph alignment bug~~ For now, use fenced div to customize block level format
267
160
-[x] Customize highlighting colors
268
161
-[ ] Customize formatting styles
269
-
- [] Applying syntax quickly using shortcuts and context menu
270
-
- [ ] Class suggester for custom span and fenced div
162
+
-[x] Applying syntax quickly using shortcuts and context menu
163
+
-[x]~~Class suggester~~ Predefined tags for custom span and fenced div
271
164
-[ ]~~More syntax, if necessary~~*I'll be over here for a while*
272
165
273
166
## Compatibility Note
@@ -278,7 +171,6 @@ This plugin have been tested in the latest version of Obsidian (about 1.7.x - 1.
278
171
279
172
- Delimiter escaping doesn't work in the preview mode.
280
173
- Cannot escape spoilers that are inside table cells (in source mode). (**cannot be fixed**)
281
-
- ~~Sometimes, faster scrolling on a big file (by using scroll bar thumbs and moving it suddenly to the bottom) breaks the customized highlight color. (*can be fixed temporarily by scrolling with fair speed through the highlight*)~~ _Already fixed_
0 commit comments