Tags are not created in yaml format when there is an indent

When tags are set as a list in yaml format, with formatting - indented, they are not created.
I.e.

Steps to reproduce

Just create formated yaml list with tags:

---
tags:
    - firstTag
    - secondTag
---

But if I create list without indent:

---
tags:
- firstTag
- secondTag
---

Its’ works fine. I’ve tried disabling the custom theme and running it in sanbox mode, but the behavior persists.

Expected result

Tags are added

Actual result

Tags don’t appear in the global tag list

Environment

SYSTEM INFO:
Obsidian version: v1.2.8
Installer version: v1.2.8
Operating system: #1 SMP PREEMPT_DYNAMIC Thu, 11 May 2023 16:40:42 +0000 6.3.2-arch1-1
Login status: not logged in
Insider build toggle: off
Live preview: on
Legacy editor: off
Base theme: dark
Community theme: Atom v0.0.0
Snippets enabled: 1
Restricted mode: off
Plugins installed: 2
Plugins enabled: 2
1: Icon Folder v2.0.0
2: Vimrc Support v0.9.0

This is not a bug. Indenting with TAB is not allowed in YAML. Use spaces instead.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.