How I use Hugo and Obsidian for my blogging needs

Introduction All my notes are stored in markdown files. My main tool for working with them is Obsidian. In this article I’ll explain how I organize my notes and posts, how I use encryption to secure the data, and how I integrate Obsidian with Hugo for blogging. Notes Storage My notes storage is on Yandex Drive in encrypted form. If you go to the notes folder on Yandex Disk, you can see that there are no markdown files or pictures - everything is encrypted....

Adaptive video in article

When inserting a video into an article there was a problem - the video does not adjust to the browser size, it is always the same width and does not resize. Your browser does not support the video tag. You can solve this problem with css styles. video { width: 100%; height: auto; } video - This is a selector that selects all <video> elements on the page. All styles specified inside the curly braces {} will be applied to those elements....