* feature proposal: export to html headless
@ 2022-06-26 12:10 Uwe Brauer
2022-06-27 0:52 ` Samuel Wales
0 siblings, 1 reply; 5+ messages in thread
From: Uwe Brauer @ 2022-06-26 12:10 UTC (permalink / raw)
To: emacs-orgmode
Hi
Some time ago I asked whether it would be possible to have a simplified
html export function (basically I need it to insert it in certain moodle
forms)
I was pointed out to me by the author/maintainer of org-mode that the
following would do the trick
(defun my-org-export-to-html ()
(interactive)
(org-html-export-to-html nil nil t t))
So the question is could that be added to the export-dispach menu
as HTML headless, I propose to use the letter L as in headLess.
Regards
Uwe Brauer
--
I strongly condemn Putin's war of aggression against the Ukraine.
I support to deliver weapons to Ukraine's military.
I support the ban of Russia from SWIFT.
I support the EU membership of the Ukraine.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: feature proposal: export to html headless
2022-06-26 12:10 feature proposal: export to html headless Uwe Brauer
@ 2022-06-27 0:52 ` Samuel Wales
2022-06-27 12:11 ` Uwe Brauer
0 siblings, 1 reply; 5+ messages in thread
From: Samuel Wales @ 2022-06-27 0:52 UTC (permalink / raw)
To: emacs-orgmode
this isn't an answer for you, but it might be useful for a reader for
reference or so. for exporting org subtrees to things like textboxes
on the web that accept simplified html, my own command has this at the
core:
(org-export-to-buffer format ; e.g. 'html
buf
;; async
nil
'subtree
;; visible-only
nil
'body-only)))
for many years i have used the surrounding command to create html for
my blogger blog, to update or post a new post.
[it isn't an answer for you because you want it in the menu. others
will field that. and it's similar to your code.]
On 6/26/22, Uwe Brauer <oub@mat.ucm.es> wrote:
>
>
> Hi
>
> Some time ago I asked whether it would be possible to have a simplified
> html export function (basically I need it to insert it in certain moodle
> forms)
>
>
> I was pointed out to me by the author/maintainer of org-mode that the
> following would do the trick
>
> (defun my-org-export-to-html ()
> (interactive)
> (org-html-export-to-html nil nil t t))
>
>
> So the question is could that be added to the export-dispach menu
> as HTML headless, I propose to use the letter L as in headLess.
>
> Regards
>
> Uwe Brauer
>
> --
> I strongly condemn Putin's war of aggression against the Ukraine.
> I support to deliver weapons to Ukraine's military.
> I support the ban of Russia from SWIFT.
> I support the EU membership of the Ukraine.
>
>
>
--
The Kafka Pandemic
A blog about science, health, human rights, and misopathy:
https://thekafkapandemic.blogspot.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: feature proposal: export to html headless
2022-06-27 0:52 ` Samuel Wales
@ 2022-06-27 12:11 ` Uwe Brauer
2022-06-27 16:11 ` Max Nikulin
0 siblings, 1 reply; 5+ messages in thread
From: Uwe Brauer @ 2022-06-27 12:11 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 275 bytes --]
>>> "SW" == Samuel Wales <samologist@gmail.com> writes:
> [it isn't an answer for you because you want it in the menu. others
> will field that. and it's similar to your code.]
Right, I hope somebody does, because it looks rather complicated when I
look for it in ox.el
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: feature proposal: export to html headless
2022-06-27 12:11 ` Uwe Brauer
@ 2022-06-27 16:11 ` Max Nikulin
2022-06-28 6:59 ` Uwe Brauer
0 siblings, 1 reply; 5+ messages in thread
From: Max Nikulin @ 2022-06-27 16:11 UTC (permalink / raw)
To: emacs-orgmode
On 27/06/2022 19:11, Uwe Brauer wrote:
>> [it isn't an answer for you because you want it in the menu. others
>> will field that. and it's similar to your code.]
>
> Right, I hope somebody does, because it looks rather complicated when
> I look for it in ox.el
Isn't the following entry of the export menu is what you are asking for?
I am unsure however if "headless" in your request is the same as
"body-only" in the Org code.
[C-b] Body only: Off [C-v] Visible only: Off
^^^^^^^^^^^^^^^^^^^^^^^
[C-s] Export scope: Buffer [C-f] Force publishing: Off
[C-a] Async export: Off
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: feature proposal: export to html headless
2022-06-27 16:11 ` Max Nikulin
@ 2022-06-28 6:59 ` Uwe Brauer
0 siblings, 0 replies; 5+ messages in thread
From: Uwe Brauer @ 2022-06-28 6:59 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 982 bytes --]
>>> "MN" == Max Nikulin <manikulin@gmail.com> writes:
> On 27/06/2022 19:11, Uwe Brauer wrote:
>>> [it isn't an answer for you because you want it in the menu. others
>>> will field that. and it's similar to your code.]
>> Right, I hope somebody does, because it looks rather complicated
>> when I look for it in ox.el
> Isn't the following entry of the export menu is what you are asking
> for? I am unsure however if "headless" in your request is the same as
> "body-only" in the Org code.
> [C-b] Body only: Off [C-v] Visible only: Off
> ^^^^^^^^^^^^^^^^^^^^^^^
> [C-s] Export scope: Buffer [C-f] Force publishing: Off
> [C-a] Async export: Off
Ok by god, I did not notice that. I will test it. Thanks very much
--
I strongly condemn Putin's war of aggression against the Ukraine.
I support to deliver weapons to Ukraine's military.
I support the ban of Russia from SWIFT.
I support the EU membership of the Ukraine.
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-06-28 7:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-26 12:10 feature proposal: export to html headless Uwe Brauer
2022-06-27 0:52 ` Samuel Wales
2022-06-27 12:11 ` Uwe Brauer
2022-06-27 16:11 ` Max Nikulin
2022-06-28 6:59 ` Uwe Brauer
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).