Skip to content

Commit 7d5ed8c

Browse files
authored
Update README.md
1 parent ea2c790 commit 7d5ed8c

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

README.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ This action generates a static site for [org-roam-ui](https://github.com/org-roa
55
It also allows deployment to GitHub Pages.
66
(See https://ikoamu.github.io/publish-org-roam-ui/)
77

8+
By using this, you can easily publish your org-roam as a digital garden 🌱
9+
810
## How to Use
911

1012
First, please manage the .org files in `org-roam-directory` and the db file in org-roam using git.
@@ -32,7 +34,7 @@ jobs:
3234
runs-on: ubuntu-latest
3335
steps:
3436
- name: Generate org-roam-ui page
35-
uses: ikoamu/org-roam-ui-hosting@main
37+
uses: ikoamu/publish-org-roam-ui@main
3638
with:
3739
org-roam-db-filename: <org-roam-filename>.db
3840
```
@@ -131,3 +133,25 @@ Sites generated by publish-org-roam will have code blocks highlighted.
131133
Search by title, tags, or content and instantly open a node.
132134

133135
<img width="533" alt="search screenshot" src="https://github.com/ikoamu/publish-org-roam-ui/assets/38206334/26f20ce8-1dbf-4377-bee2-fa14da7de105">
136+
137+
### Support `#+ATTR_HTML` keyword in images
138+
139+
By writing the #+ATTR_HTML keyword for an image, it will be set as HTML attributes for the `<img>` tag.
140+
141+
```org
142+
#+ATTR_HTML: :alt org-mode-unicorn :width 280px :align right
143+
[[./img/org-mode-unicorn.svg]]
144+
```
145+
146+
<img width="533" alt="HTML attributes example screenshot" src="https://github.com/ikoamu/publish-org-roam-ui/assets/38206334/75c32431-15c7-4fad-a019-039a3a2c6e4e">
147+
148+
## Local Build
149+
150+
If you don't want to upload org files to the repository, you can obtain the same site as generated by GitHub Actions by running the site generation script locally.
151+
152+
```bash
153+
git clone [email protected]:ikoamu/publish-org-roam-ui.git
154+
cd publish-org-roam-ui
155+
./local.sh /path/to/org-roam-dir <org-roam-filename>.db
156+
```
157+

0 commit comments

Comments
 (0)