Thông thường, khi tôi xuất sang html một org-mode
bộ đệm có chứa một liên kết đến một hình ảnh, liên kết đó được chuyển thành một html thích hợp <img...>
. Tuy nhiên, nếu hình ảnh đó có .svg
phần mở rộng, nó sẽ được xuất ra <object...>
thay thế.
Làm thế nào để tôi ngăn chặn điều này?
Ví dụ: liên kết sau:
[[file:https://clojars.org/malabarba/lazy-map/latest-version.svg]]
được xuất khẩu như thế này:
<object type="image/svg+xml" data="https://clojars.org/malabarba/lazy-map/latest-version.svg" >
Sorry, your browser does not support SVG.</object>
Nhưng tôi muốn nó được xuất khẩu như thế này:
<img src="https://clojars.org/malabarba/lazy-map/latest-version.svg">