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
{{ message }}
This repository was archived by the owner on Mar 9, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+30-1Lines changed: 30 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,11 @@ Please upgrade your tables to this new format. This update also includes several
16
16
17
17
## What's New?
18
18
19
+
### Version 3.4.0
20
+
21
+
- The pound sign `#` in tags are now optional. See `Tags` below for more details.
22
+
- NLT now supports bold, italics, highlight and underline. See `Markdown` below for more details.
23
+
19
24
### Version 3.3.0
20
25
21
26
- Line break elements are now supported for cells in a column with the type `text` selected. See `Line Breaks` below for usage information
@@ -116,6 +121,26 @@ To edit a cell, just click on it. An input, textarea or menu will appear which w
116
121
117
122
Text can be rendered in cells that are in a column with the `text` type selected.
118
123
124
+
#### Markdown
125
+
126
+
To bold text use either double astericks `**` or the bold tag `<b>
127
+
128
+
-`**This is bold**`
129
+
-`<b>This is bold</b>`
130
+
131
+
To italicize text use either single astericks `*` or the italics tag `<i>
132
+
133
+
-`*This is italicized*`
134
+
-`<i>This is italicized</i>`
135
+
136
+
To highlight text use the double equal sign syntax `==`
137
+
138
+
-`==This is highlighted==`
139
+
140
+
To underline text use the underline tag `<u>`
141
+
142
+
-`<u>This is underlined</u>`
143
+
119
144
#### Links
120
145
121
146
Links can be rendered in cells that are in a column with the `text` column type is selected. To render a link, add double squares surrounding text `[[My Link]]`.
@@ -136,7 +161,11 @@ Line breaks can be added using the break line HTML tag `<br>`. For example, if y
136
161
137
162
### Tags
138
163
139
-
Tags can be rendered in cells that are in a column with the `tag` type selected. Tags have a special notion-like menu that will appear. Tags are scoped to each column of a table. You can type text to filter existing tags and select one. You can also create a new tag by typing text and clicking "Create New" or pressing enter.
164
+
Tags can be rendered in cells that are in a column with the `tag` type selected.
165
+
166
+
Tags have a special notion-like menu that will appear. Tags are scoped to each column of a table. You can type text to filter existing tags and select one. You can also create a new tag by typing text and clicking "Create New" or pressing enter.
167
+
168
+
Tags can be rendered with or without a pound sign `#`. If you use a pound sign, then the tag will be rendered as a internal Obsidian tag link. Otherwise, it will be rendered as plain text.
0 commit comments