content:
will search the content of the file only.&
or other HTML entities.{{date}}
and {{time}}
with. {{title}}
will be replaced by the title of the current file. You can also insert {{date:FORMAT}} to customize date formatting individually.%20
.Tab
to autocomplete links no longer inserts an extra pair of ]]
.![[Embed|Display]]
now properly recognizes the link to "Embed.md" instead of "Embed|Display.md".#translations
channel.<style>
tags are no longer permitted in raw HTML. This is because the HTML standard disallows <style>
tags within <body>
; they are only permitted in <head>
.]]
closing brackets when "smart indent list" is turned off.Lots of under the hood improvements on this one. Everyone should be made slightly happier, and a few people will be made much happier.
Enter
key in the search query will run the query again even if it hasn't been changed._
(underscore) as part of the name.]]
was fixed again for some edge cases.Ctrl/Cmd+D
used to not work in Vim mode because it was bound to another operation; that should now work properly to scroll down half a page.obsidian.css
, should no longer show up in quick switcher.style
properties are now allowed to be added to elements, style all the things!iframe
tags are now allowed, which can be used to embed various external pages like YouTube, Google Maps, etc.^
will now match beginning of line and $
will now match end of line./\[\]/
previously didn't work, requiring /\\[\\]/
. Now you don't need to add the second backslash.ignore-case:
previously made the search case sensitive instead of what it says it does, oops./
for relative links.]]
not properly styled in headings, which made them appear really small.$$
latex blocks couldn't contain single dollar signs $
."Quoted strings"
can be used to perform full word match. "test"
will not match the word testing
. Use backslash \"
to escape double quotes and \\
to escape backslash./[a-z]{3}/
.OR
to match one or another. Use -
to negate a query. The space character is used for boolean "and".(a OR b) (c OR d)
.file:("to be" OR -"2B")
.
file:
will perform the following subquery on the file name. For example: file:".jpg"
.path:
will perform the following subquery on the file path, absolute from the root. For example: file:"Daily Notes/2020-07"
.match-case:
and ignore-case:
will override the case sensitive match logic for the following subquery.Collapse results
will toggle between just showing matching note names and showing the lines in which matches appear. These extended results can be toggled for each note by clicking on the folding triangle next to the file name.Match Case
will do what it says, but note that it can be overridden on a per-search basis as per above.Explain Search Terms
will show you what the search is actually looking for in plain terms, so you can debug complex searches.==
instead of toggling as the name would suggest.mermaid
, like so:graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
.obsidian/config
to its own file .obsidian/workspace
.obsidian.md
vs https://obsidian.md
)[[link]]nk]]nk]]
. Thankfully, that no longer happens.$
was included in the middle.$
. You can now do that with \$
Ctrl/Cmd-B
and Ctrl/Cmd-I
are now customizable.[[link1]][link2]]
now links to the correct place in edit mode.Ctrl/Cmd-D
can now be customized.Add to dictionary
to add. Settings -> Editor -> Spellcheck (gears icon) to remove words from the dictionary.Ctrl/Cmd-[
and Ctrl/Cmd-]
no longer override vim mode.split pane
command and shortcut creating empty panes when current pane was pinned.---
could cause the editor to crash.:
, /
, and ?
.Select all
has been removed from the context menu.Cmd/Ctrl+K
, which was previously reserved for the Markdown editor's insert link.==
highlight.Some quick bug fixes on top of 0.7.1.
Tab
causing the cursor to jump to another file while editing, that's fixed now too.$$
is on its own line.Cmd-Z
does not undo the file name change.Just some quick bug fixes on the heels of 0.7.0, cleaning up a little.
[File](file:///...)
links in preview.Tab
at the end of a file no longer causes the cursor to jump to another pane's file name.Enter
while searching no longer causes it to jump to the next occurrence even if the cursor is in the document.Cmd/Ctrl-[
and ]
not incrementing numbered lists correctly is now fixed.F1
by default.Mostly some quick bug fixes this time around.
[[#section]]
will now properly link to headings in the same file. This will also work for [link](#heading)
..trash/
or 3) permanent delete like before. This means an extral layer of safety in case you accidentally delete a note. The default is System trash, but if the system trash is disabled, it will use .trash/
by default.Cmd/Ctrl-click
from the file explorer will do it. When using the quick switcher, Cmd/Ctrl-Enter
will open the selection in a new pane.Shift-Enter
to create a new note instead of opening the selected match, if you have names that are too similar. Cmd/Ctrl-Shift-Enter
creates and opens in a new pane.This is a small release to fix some bugs that made the Graph view unusable.
ctrl-b
will now no longer step on OS- level movement hotkeys.Ctrl/Cmd-click
on a node in the graph view now opens in a new pane.Just a quick bug fix because there was a potential for data loss. But, we couldn't help adding a new feature as well.