让Obsidian中嵌入的本地音频循环播放May 26, 2024155AI-generated summaryThe project "Xlog" has been completed. It involves using the HTML audio tag to solve a specific problem. Users are instructed to copy provided code into their notes and modify the audio file path to an absolute path based on their system. 思路:用 HTML audio 标签解决 方法:复制以下代码粘贴到笔记中 注意:将音频文件路径改成基于系统的绝对路径 <audio controls loop src='文件路径' /> 比如:<audio controls loop src='f:/音频/歌曲.mp3' /> ---