-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add org-transclusion-http.el: Transclude content over HTTP
- Loading branch information
1 parent
fca0216
commit fdebef4
Showing
3 changed files
with
251 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# id="care" points to <h2>: Transclude <h2> and content after <h2> also. | ||
#+transclude: [[https://ushin.org/needs-list.html#care]] | ||
|
||
# Org file with heading CUSTOM_ID: "care": Transclude only that heading. | ||
#+transclude: [[https://ushin.org/needs-list.org#care]] | ||
|
||
# Nonexistent target in Org file: Transclude entire file. | ||
#+transclude: [[https://ushin.org/needs-list.org#nonexistent-target]] | ||
|
||
# Nonexistent target in HTML file: Transclude entire file as Org. | ||
#+transclude: [[https://ushin.org/needs-list.html#nonexistent-target]] | ||
|
||
# id="jabber" points to <section>: Transclude only <section> content. | ||
#+transclude: [[https://jmp.chat/faq#jabber]] | ||
|
||
# id="autocapitalize" points to <dt>: Transclude <dt> and subsequent <dd>. | ||
#+transclude: [[https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea#autocapitalize]] |