emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* publishuing in html5
@ 2013-12-09 17:46 Catonano
  2013-12-09 17:59 ` Catonano
                   ` (2 more replies)
  0 siblings, 3 replies; 38+ messages in thread
From: Catonano @ 2013-12-09 17:46 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 470 bytes --]

I' m trying to follow the examples at this page

http://orgmode.org/manual/HTML-doctypes.html#HTML-doctypes

to transform

     #+BEGIN_ASIDE
     Lorem ipsum
     #+END_ASIDE


in


     <aside>
       <p>Lorem ipsum</p>
     </aside>

but it doesn't work, I still get

<div class="aside">
<p>
Lorem ipsum
</p>

</div>

I tried to both include the directive in the "group" in the project
definition AND using

#+HTML_HTML5_FANCY: t

in level-0.org

What am I missing ?

[-- Attachment #2: Type: text/html, Size: 818 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-09 17:46 publishuing in html5 Catonano
@ 2013-12-09 17:59 ` Catonano
  2013-12-09 18:48   ` Catonano
  2013-12-09 19:53 ` Nick Dokos
  2013-12-09 19:57 ` Nicolas Goaziou
  2 siblings, 1 reply; 38+ messages in thread
From: Catonano @ 2013-12-09 17:59 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 610 bytes --]

I forgot: my org-mode version is 8.2.4


2013/12/9 Catonano <catonano@gmail.com>

> I' m trying to follow the examples at this page
>
> http://orgmode.org/manual/HTML-doctypes.html#HTML-doctypes
>
> to transform
>
>      #+BEGIN_ASIDE
>      Lorem ipsum
>      #+END_ASIDE
>
>
> in
>
>
>      <aside>
>        <p>Lorem ipsum</p>
>      </aside>
>
> but it doesn't work, I still get
>
> <div class="aside">
> <p>
> Lorem ipsum
> </p>
>
> </div>
>
> I tried to both include the directive in the "group" in the project
> definition AND using
>
> #+HTML_HTML5_FANCY: t
>
> in level-0.org
>
> What am I missing ?
>

[-- Attachment #2: Type: text/html, Size: 1240 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-09 17:59 ` Catonano
@ 2013-12-09 18:48   ` Catonano
  0 siblings, 0 replies; 38+ messages in thread
From: Catonano @ 2013-12-09 18:48 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 860 bytes --]

now I see that html5 is mentioned in the exporting section but not in the
publishing section.

I mistakenly identified the 2.

Does org-mode publish to html5 ?


2013/12/9 Catonano <catonano@gmail.com>

> I forgot: my org-mode version is 8.2.4
>
>
> 2013/12/9 Catonano <catonano@gmail.com>
>
>> I' m trying to follow the examples at this page
>>
>> http://orgmode.org/manual/HTML-doctypes.html#HTML-doctypes
>>
>> to transform
>>
>>      #+BEGIN_ASIDE
>>      Lorem ipsum
>>      #+END_ASIDE
>>
>>
>> in
>>
>>
>>      <aside>
>>        <p>Lorem ipsum</p>
>>      </aside>
>>
>> but it doesn't work, I still get
>>
>> <div class="aside">
>> <p>
>> Lorem ipsum
>> </p>
>>
>> </div>
>>
>> I tried to both include the directive in the "group" in the project
>> definition AND using
>>
>> #+HTML_HTML5_FANCY: t
>>
>> in level-0.org
>>
>> What am I missing ?
>>
>
>

[-- Attachment #2: Type: text/html, Size: 1848 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-09 17:46 publishuing in html5 Catonano
  2013-12-09 17:59 ` Catonano
@ 2013-12-09 19:53 ` Nick Dokos
  2013-12-11  0:41   ` Scott Randby
  2013-12-11 10:00   ` publishuing in html5 Catonano
  2013-12-09 19:57 ` Nicolas Goaziou
  2 siblings, 2 replies; 38+ messages in thread
From: Nick Dokos @ 2013-12-09 19:53 UTC (permalink / raw)
  To: emacs-orgmode

Catonano <catonano@gmail.com> writes:

> I' m trying to follow the examples at this page
>
> http://orgmode.org/manual/HTML-doctypes.html#HTML-doctypes
>
> to transform
>
>      #+BEGIN_ASIDE
>      Lorem ipsum
>      #+END_ASIDE
>
> in
>
>      <aside>
>        <p>Lorem ipsum</p>
>      </aside>
>
> but it doesn't work, I still get
>
> <div class="aside">
> <p>
> Lorem ipsum
> </p>
>
> </div>
>
> I tried to both include the directive in the "group" in the project
> definition AND using
>
> #+HTML_HTML5_FANCY: t
>

Try

--8<---------------cut here---------------start------------->8---
#+HTML_DOCTYPE: html5
#+OPTIONS: html5-fancy:t

#+BEGIN_ASIDE
Lorem Ipsum
#+END_ASIDE
--8<---------------cut here---------------end--------------->8---

> in level-0.org
>
> What am I missing ?

Nick

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-09 17:46 publishuing in html5 Catonano
  2013-12-09 17:59 ` Catonano
  2013-12-09 19:53 ` Nick Dokos
@ 2013-12-09 19:57 ` Nicolas Goaziou
  2013-12-11  9:56   ` Catonano
  2013-12-31 11:47   ` Catonano
  2 siblings, 2 replies; 38+ messages in thread
From: Nicolas Goaziou @ 2013-12-09 19:57 UTC (permalink / raw)
  To: Catonano; +Cc: emacs-orgmode

Hello,

Catonano <catonano@gmail.com> writes:

> I tried to both include the directive in the "group" in the project
> definition AND using
>
> #+HTML_HTML5_FANCY: t
>
> in level-0.org

There is no such keyword. Use:

  #+OPTIONS: html5-fancy:t

or set `org-html-html5-fancy' to a non-nil value.


Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-09 19:53 ` Nick Dokos
@ 2013-12-11  0:41   ` Scott Randby
  2013-12-11 12:58     ` Nick Dokos
  2013-12-11 10:00   ` publishuing in html5 Catonano
  1 sibling, 1 reply; 38+ messages in thread
From: Scott Randby @ 2013-12-11  0:41 UTC (permalink / raw)
  To: emacs-orgmode

On 12/09/2013 02:53 PM, Nick Dokos wrote:
> Catonano <catonano@gmail.com> writes:
> 
>> I' m trying to follow the examples at this page
>>
>> http://orgmode.org/manual/HTML-doctypes.html#HTML-doctypes
>>
>> to transform
>>
>>      #+BEGIN_ASIDE
>>      Lorem ipsum
>>      #+END_ASIDE
>>
>> in
>>
>>      <aside>
>>        <p>Lorem ipsum</p>
>>      </aside>
>>
>> but it doesn't work, I still get
>>
>> <div class="aside">
>> <p>
>> Lorem ipsum
>> </p>
>>
>> </div>
>>
>> I tried to both include the directive in the "group" in the project
>> definition AND using
>>
>> #+HTML_HTML5_FANCY: t
>>
> 
> Try
> 
> --8<---------------cut here---------------start------------->8---
> #+HTML_DOCTYPE: html5
> #+OPTIONS: html5-fancy:t
> 
> #+BEGIN_ASIDE
> Lorem Ipsum
> #+END_ASIDE
> --8<---------------cut here---------------end--------------->8---
> 

I cannot get the html5-fancy:t option to work when I set it in a file in
the manner described above. It only works when I set
org-html-html5-fancy to t in my init file.

I'm using Org 8.0.3 and Emacs 24.2.1. Do I need to upgrade my version of
Org?

Scott Randby


>> in level-0.org
>>
>> What am I missing ?
> 
> Nick
> 
> 
> 

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-09 19:57 ` Nicolas Goaziou
@ 2013-12-11  9:56   ` Catonano
  2013-12-15 10:07     ` Nicolas Goaziou
  2013-12-31 11:47   ` Catonano
  1 sibling, 1 reply; 38+ messages in thread
From: Catonano @ 2013-12-11  9:56 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 833 bytes --]

Nicolas,

thanks for your hint. I have a couple of observations.


2013/12/9 Nicolas Goaziou <n.goaziou@gmail.com>

> Hello,
>
> Catonano <catonano@gmail.com> writes:
>
> > I tried to both include the directive in the "group" in the project
> > definition AND using
> >
> > #+HTML_HTML5_FANCY: t
> >
> > in level-0.org
>
> There is no such keyword. Use:
>
>   #+OPTIONS: html5-fancy:t
>

that key is mentioned at this page
http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html#sec-5

is that page wrong ?

Anyway I tried to substitute that row with your one and it didn't work
anyway.

I made a temporary repository here
https://github.com/humanitiesNerd/exploring-org-mode

in case anyone wants to take a look

thanks

>
>
> or set `org-html-html5-fancy' to a non-nil value.
>
>
> Regards,
>
> --
> Nicolas Goaziou
>

[-- Attachment #2: Type: text/html, Size: 1858 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-09 19:53 ` Nick Dokos
  2013-12-11  0:41   ` Scott Randby
@ 2013-12-11 10:00   ` Catonano
  1 sibling, 0 replies; 38+ messages in thread
From: Catonano @ 2013-12-11 10:00 UTC (permalink / raw)
  To: Nick Dokos; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 590 bytes --]

Nick,

2013/12/9 Nick Dokos <ndokos@gmail.com>

> Catonano <catonano@gmail.com> writes:
>
> Try
>
> --8<---------------cut here---------------start------------->8---
> #+HTML_DOCTYPE: html5
> #+OPTIONS: html5-fancy:t
>
> #+BEGIN_ASIDE
> Lorem Ipsum
> #+END_ASIDE
> --8<---------------cut here---------------end--------------->8---
>


I'm trying to use  level-N-org files, I'm not writing the settings in each
file

The doctype is set to html5 and html5-fancy is set to a not null value

Would you mind to take a look at it ? It's here

https://github.com/humanitiesNerd/exploring-org-mode

[-- Attachment #2: Type: text/html, Size: 1191 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11  0:41   ` Scott Randby
@ 2013-12-11 12:58     ` Nick Dokos
  2013-12-11 14:13       ` Scott Randby
  0 siblings, 1 reply; 38+ messages in thread
From: Nick Dokos @ 2013-12-11 12:58 UTC (permalink / raw)
  To: emacs-orgmode

Scott Randby <srandby@gmail.com> writes:

> On 12/09/2013 02:53 PM, Nick Dokos wrote:
>> Catonano <catonano@gmail.com> writes:
>> 
>>> I' m trying to follow the examples at this page
>>>
>>> http://orgmode.org/manual/HTML-doctypes.html#HTML-doctypes
>>>
>>> to transform
>>>
>>>      #+BEGIN_ASIDE
>>>      Lorem ipsum
>>>      #+END_ASIDE
>>>
>>> in
>>>
>>>      <aside>
>>>        <p>Lorem ipsum</p>
>>>      </aside>
>>>
>>> but it doesn't work, I still get
>>>
>>> <div class="aside">
>>> <p>
>>> Lorem ipsum
>>> </p>
>>>
>>> </div>
>>>
>>> I tried to both include the directive in the "group" in the project
>>> definition AND using
>>>
>>> #+HTML_HTML5_FANCY: t
>>>
>> 
>> Try
>> 
>> --8<---------------cut here---------------start------------->8---
>> #+HTML_DOCTYPE: html5
>> #+OPTIONS: html5-fancy:t
>> 
>> #+BEGIN_ASIDE
>> Lorem Ipsum
>> #+END_ASIDE
>> --8<---------------cut here---------------end--------------->8---
>> 
>
> I cannot get the html5-fancy:t option to work when I set it in a file in
> the manner described above. It only works when I set
> org-html-html5-fancy to t in my init file.
>

Did you C-c C-c on the #+OPTIONS line (or otherwise reinitialize the
mode of the file)?

-- 
Nick

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11 12:58     ` Nick Dokos
@ 2013-12-11 14:13       ` Scott Randby
  2013-12-11 15:04         ` Nick Dokos
  2013-12-11 15:43         ` Leading headline of a subtree tag export Scott Randby
  0 siblings, 2 replies; 38+ messages in thread
From: Scott Randby @ 2013-12-11 14:13 UTC (permalink / raw)
  To: emacs-orgmode

On 12/11/2013 07:58 AM, Nick Dokos wrote:
> Scott Randby <srandby@gmail.com> writes:
> 
>> On 12/09/2013 02:53 PM, Nick Dokos wrote:
>>> Catonano <catonano@gmail.com> writes:
>>>
>>>> I' m trying to follow the examples at this page
>>>>
>>>> http://orgmode.org/manual/HTML-doctypes.html#HTML-doctypes
>>>>
>>>> to transform
>>>>
>>>>      #+BEGIN_ASIDE
>>>>      Lorem ipsum
>>>>      #+END_ASIDE
>>>>
>>>> in
>>>>
>>>>      <aside>
>>>>        <p>Lorem ipsum</p>
>>>>      </aside>
>>>>
>>>> but it doesn't work, I still get
>>>>
>>>> <div class="aside">
>>>> <p>
>>>> Lorem ipsum
>>>> </p>
>>>>
>>>> </div>
>>>>
>>>> I tried to both include the directive in the "group" in the project
>>>> definition AND using
>>>>
>>>> #+HTML_HTML5_FANCY: t
>>>>
>>>
>>> Try
>>>
>>> --8<---------------cut here---------------start------------->8---
>>> #+HTML_DOCTYPE: html5
>>> #+OPTIONS: html5-fancy:t
>>>
>>> #+BEGIN_ASIDE
>>> Lorem Ipsum
>>> #+END_ASIDE
>>> --8<---------------cut here---------------end--------------->8---
>>>
>>
>> I cannot get the html5-fancy:t option to work when I set it in a file in
>> the manner described above. It only works when I set
>> org-html-html5-fancy to t in my init file.
>>
> 
> Did you C-c C-c on the #+OPTIONS line (or otherwise reinitialize the
> mode of the file)?
> 

I tried C-c C-c on the #+OPTIONS line and I tried killing the file and
opening it up again---neither works. I looked in the manual (section
12.3) and noticed that html5-fancy: is not on the list of arguments
recognized by the #+OPTIONS keyword.

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11 14:13       ` Scott Randby
@ 2013-12-11 15:04         ` Nick Dokos
  2013-12-11 15:20           ` Scott Randby
  2013-12-11 15:43         ` Leading headline of a subtree tag export Scott Randby
  1 sibling, 1 reply; 38+ messages in thread
From: Nick Dokos @ 2013-12-11 15:04 UTC (permalink / raw)
  To: emacs-orgmode

Scott Randby <srandby@gmail.com> writes:


> I tried C-c C-c on the #+OPTIONS line and I tried killing the file and
> opening it up again---neither works. I looked in the manual (section
> 12.3) and noticed that html5-fancy: is not on the list of arguments
> recognized by the #+OPTIONS keyword.

It's documented in section 12.6.2, "HTML doctypes".

Nick

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11 15:04         ` Nick Dokos
@ 2013-12-11 15:20           ` Scott Randby
  2013-12-11 15:24             ` Nicolas Goaziou
  0 siblings, 1 reply; 38+ messages in thread
From: Scott Randby @ 2013-12-11 15:20 UTC (permalink / raw)
  To: emacs-orgmode

On 12/11/2013 10:04 AM, Nick Dokos wrote:
> Scott Randby <srandby@gmail.com> writes:
> 
> 
>> I tried C-c C-c on the #+OPTIONS line and I tried killing the file and
>> opening it up again---neither works. I looked in the manual (section
>> 12.3) and noticed that html5-fancy: is not on the list of arguments
>> recognized by the #+OPTIONS keyword.
> 
> It's documented in section 12.6.2, "HTML doctypes".

Yes, I had seen that documentation earlier, but I can't get it to work.
I have no idea what the trouble could be. Any suggestions?

> 
> Nick
> 
> 
> 

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11 15:20           ` Scott Randby
@ 2013-12-11 15:24             ` Nicolas Goaziou
  2013-12-11 15:47               ` Scott Randby
  0 siblings, 1 reply; 38+ messages in thread
From: Nicolas Goaziou @ 2013-12-11 15:24 UTC (permalink / raw)
  To: Scott Randby; +Cc: emacs-orgmode

Hello,

Scott Randby <srandby@gmail.com> writes:

> On 12/11/2013 10:04 AM, Nick Dokos wrote:
>> Scott Randby <srandby@gmail.com> writes:
>> 
>> 
>>> I tried C-c C-c on the #+OPTIONS line and I tried killing the file and
>>> opening it up again---neither works. I looked in the manual (section
>>> 12.3) and noticed that html5-fancy: is not on the list of arguments
>>> recognized by the #+OPTIONS keyword.
>> 
>> It's documented in section 12.6.2, "HTML doctypes".
>
> Yes, I had seen that documentation earlier, but I can't get it to work.
> I have no idea what the trouble could be. Any suggestions?

You also need to set `org-html-doctype' to "html5" or some such in order
to make html5-fancy effective.


Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Leading headline of a subtree tag export
  2013-12-11 14:13       ` Scott Randby
  2013-12-11 15:04         ` Nick Dokos
@ 2013-12-11 15:43         ` Scott Randby
  2013-12-11 15:57           ` Nicolas Goaziou
  1 sibling, 1 reply; 38+ messages in thread
From: Scott Randby @ 2013-12-11 15:43 UTC (permalink / raw)
  To: emacs-orgmode

I had a file with the following structure:

#+OPTIONS: tags:nil
* Grades
** Student :studenttag:
:PROPERTIES:
:EXPORT_FILE_NAME: Exported-Grades/studenttag
:END:
*** Totals :totals:
    Content

Whenever I exported the entire file, no tags were exported (what I
want). However, whenever I exported the Student subtree, the tag for
that subtree was exported (not what I want) but the tag for the Totals
subtree was not exported (what I want). Then I tried the following:

#+OPTIONS: tags:nil
* Grades
** Student :studenttag:
:PROPERTIES:
:EXPORT_FILE_NAME: Exported-Grades/studenttag
:EXPORT_OPTIONS: tags:nil
:END:
*** Totals :totals:
    Content

The tag for the Student subtree is still exported when I export the
Student subtree. How do I prevent this tag from being exported when I
export the subtree?

Scott Randby

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11 15:24             ` Nicolas Goaziou
@ 2013-12-11 15:47               ` Scott Randby
  2013-12-11 16:03                 ` Nicolas Goaziou
  0 siblings, 1 reply; 38+ messages in thread
From: Scott Randby @ 2013-12-11 15:47 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode

On 12/11/2013 10:24 AM, Nicolas Goaziou wrote:
> Hello,
> 
> Scott Randby <srandby@gmail.com> writes:
> 
>> On 12/11/2013 10:04 AM, Nick Dokos wrote:
>>> Scott Randby <srandby@gmail.com> writes:
>>>
>>>
>>>> I tried C-c C-c on the #+OPTIONS line and I tried killing the file and
>>>> opening it up again---neither works. I looked in the manual (section
>>>> 12.3) and noticed that html5-fancy: is not on the list of arguments
>>>> recognized by the #+OPTIONS keyword.
>>>
>>> It's documented in section 12.6.2, "HTML doctypes".
>>
>> Yes, I had seen that documentation earlier, but I can't get it to work.
>> I have no idea what the trouble could be. Any suggestions?
> 
> You also need to set `org-html-doctype' to "html5" or some such in order
> to make html5-fancy effective.

I already have the following in my file:

#+HTML_DOCTYPE: html5

Scott

> 
> 
> Regards,
> 

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: Leading headline of a subtree tag export
  2013-12-11 15:43         ` Leading headline of a subtree tag export Scott Randby
@ 2013-12-11 15:57           ` Nicolas Goaziou
  2013-12-11 16:35             ` Scott Randby
  0 siblings, 1 reply; 38+ messages in thread
From: Nicolas Goaziou @ 2013-12-11 15:57 UTC (permalink / raw)
  To: Scott Randby; +Cc: emacs-orgmode

Hello,

Scott Randby <srandby@gmail.com> writes:

> I had a file with the following structure:
>
> #+OPTIONS: tags:nil
> * Grades
> ** Student :studenttag:
> :PROPERTIES:
> :EXPORT_FILE_NAME: Exported-Grades/studenttag
> :END:
> *** Totals :totals:
>     Content
>
> Whenever I exported the entire file, no tags were exported (what I
> want). However, whenever I exported the Student subtree, the tag for
> that subtree was exported (not what I want) but the tag for the Totals
> subtree was not exported (what I want). Then I tried the following:
>
> #+OPTIONS: tags:nil
> * Grades
> ** Student :studenttag:
> :PROPERTIES:
> :EXPORT_FILE_NAME: Exported-Grades/studenttag
> :EXPORT_OPTIONS: tags:nil
> :END:
> *** Totals :totals:
>     Content
>
> The tag for the Student subtree is still exported when I export the
> Student subtree. How do I prevent this tag from being exported when I
> export the subtree?

During a subtree export, the root headline becomes document's title, so
tags:nil no longer applies. By default everything is included, todo
keyword and tags.

You can specify another title with :EXPORT_TITLE:, e.g.

  :EXPORT_TITLE: Student


Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11 15:47               ` Scott Randby
@ 2013-12-11 16:03                 ` Nicolas Goaziou
  2013-12-11 16:30                   ` Scott Randby
  2013-12-14 17:01                   ` Catonano
  0 siblings, 2 replies; 38+ messages in thread
From: Nicolas Goaziou @ 2013-12-11 16:03 UTC (permalink / raw)
  To: Scott Randby; +Cc: emacs-orgmode

Scott Randby <srandby@gmail.com> writes:

> I already have the following in my file:
>
> #+HTML_DOCTYPE: html5

You need to upgrade Org then.


Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11 16:03                 ` Nicolas Goaziou
@ 2013-12-11 16:30                   ` Scott Randby
  2013-12-14 17:01                   ` Catonano
  1 sibling, 0 replies; 38+ messages in thread
From: Scott Randby @ 2013-12-11 16:30 UTC (permalink / raw)
  To: emacs-orgmode

On 12/11/2013 11:03 AM, Nicolas Goaziou wrote:
> Scott Randby <srandby@gmail.com> writes:
> 
>> I already have the following in my file:
>>
>> #+HTML_DOCTYPE: html5
> 
> You need to upgrade Org then.

Okay, I will do that.

Scott

> 
> 
> Regards,
> 

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: Leading headline of a subtree tag export
  2013-12-11 15:57           ` Nicolas Goaziou
@ 2013-12-11 16:35             ` Scott Randby
  0 siblings, 0 replies; 38+ messages in thread
From: Scott Randby @ 2013-12-11 16:35 UTC (permalink / raw)
  To: emacs-orgmode

On 12/11/2013 10:57 AM, Nicolas Goaziou wrote:
> Hello,
> 
> Scott Randby <srandby@gmail.com> writes:
> 
>> I had a file with the following structure:
>>
>> #+OPTIONS: tags:nil
>> * Grades
>> ** Student :studenttag:
>> :PROPERTIES:
>> :EXPORT_FILE_NAME: Exported-Grades/studenttag
>> :END:
>> *** Totals :totals:
>>     Content
>>
>> Whenever I exported the entire file, no tags were exported (what I
>> want). However, whenever I exported the Student subtree, the tag for
>> that subtree was exported (not what I want) but the tag for the Totals
>> subtree was not exported (what I want). Then I tried the following:
>>
>> #+OPTIONS: tags:nil
>> * Grades
>> ** Student :studenttag:
>> :PROPERTIES:
>> :EXPORT_FILE_NAME: Exported-Grades/studenttag
>> :EXPORT_OPTIONS: tags:nil
>> :END:
>> *** Totals :totals:
>>     Content
>>
>> The tag for the Student subtree is still exported when I export the
>> Student subtree. How do I prevent this tag from being exported when I
>> export the subtree?
> 
> During a subtree export, the root headline becomes document's title, so
> tags:nil no longer applies. By default everything is included, todo
> keyword and tags.
> 
> You can specify another title with :EXPORT_TITLE:, e.g.
> 
>   :EXPORT_TITLE: Student

That worked. Thanks.

Scott

> 
> 
> Regards,
> 

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11 16:03                 ` Nicolas Goaziou
  2013-12-11 16:30                   ` Scott Randby
@ 2013-12-14 17:01                   ` Catonano
  2013-12-14 19:40                     ` Nick Dokos
                                       ` (2 more replies)
  1 sibling, 3 replies; 38+ messages in thread
From: Catonano @ 2013-12-14 17:01 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: Scott Randby, emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 252 bytes --]

2013/12/11 Nicolas Goaziou <n.goaziou@gmail.com>

> Scott Randby <srandby@gmail.com> writes:
>
> > I already have the following in my file:
> >
> > #+HTML_DOCTYPE: html5
>
> You need to upgrade Org then.
>
>
I have Org 8.2.4 and it doesn't work anyway

[-- Attachment #2: Type: text/html, Size: 675 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-14 17:01                   ` Catonano
@ 2013-12-14 19:40                     ` Nick Dokos
  2013-12-14 21:22                       ` Alan L Tyree
                                         ` (2 more replies)
  2013-12-15 10:00                     ` Nicolas Goaziou
  2013-12-15 18:30                     ` Scott Randby
  2 siblings, 3 replies; 38+ messages in thread
From: Nick Dokos @ 2013-12-14 19:40 UTC (permalink / raw)
  To: emacs-orgmode

Catonano <catonano@gmail.com> writes:

> 2013/12/11 Nicolas Goaziou <n.goaziou@gmail.com>
>
>     Scott Randby <srandby@gmail.com> writes:
>    
>     > I already have the following in my file:
>     >
>     > #+HTML_DOCTYPE: html5
>    
>     You need to upgrade Org then.
>
> I have Org 8.2.4 and it doesn't work anyway
>

What OS? What version of emacs? Are you sure you are not
picking up the org-mode bits that are bundled with emacs?

The following file (which I posted before)

--8<---------------cut here---------------start------------->8---
#+HTML_DOCTYPE: html5
#+OPTIONS: html5-fancy:t

#+BEGIN_ASIDE
Lorem Ipsum
#+END_ASIDE
--8<---------------cut here---------------end--------------->8---

produces the following body for me:

,----
| <body>
| <div id="content">
| <h1 class="title">html5</h1>
| <aside>
| <p>
| Lorem Ipsum
| </p>
| </aside>
| </div>
| <div id="postamble" class="status">
| <p class="author">Author: Nick Dokos</p>
| <p class="date">Created: 2013-12-14 Sat 14:30</p>
| <p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 24.3.50.2 (<a href="http://orgmode.org">Org</a> mode 8.2.3c)</p>
| <p class="validation"><a href="http://validator.w3.org/check?uri=referer">Validate</a></p>
| </div>
| </body>
`----

Not sure why it says 8.2.3c - I'm running:

Org-mode version 8.2.4 (release_8.2.4-340-g059dc0 @
/home/nick/elisp/org-mode/lisp/)

GNU Emacs 24.3.50.2 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.10) of
2013-07-14 on pierrot

Linux pierrot 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

-- 
Nick

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-14 19:40                     ` Nick Dokos
@ 2013-12-14 21:22                       ` Alan L Tyree
  2013-12-14 21:36                       ` Achim Gratz
  2013-12-18 10:16                       ` Catonano
  2 siblings, 0 replies; 38+ messages in thread
From: Alan L Tyree @ 2013-12-14 21:22 UTC (permalink / raw)
  To: emacs-orgmode

On 15/12/13 06:40, Nick Dokos wrote:
> Catonano <catonano@gmail.com> writes:
>
>> 2013/12/11 Nicolas Goaziou <n.goaziou@gmail.com>
>>
>>      Scott Randby <srandby@gmail.com> writes:
>>     
>>      > I already have the following in my file:
>>      >
>>      > #+HTML_DOCTYPE: html5
>>     
>>      You need to upgrade Org then.
>>
>> I have Org 8.2.4 and it doesn't work anyway
>>
> What OS? What version of emacs? Are you sure you are not
> picking up the org-mode bits that are bundled with emacs?
>
> The following file (which I posted before)
>
> --8<---------------cut here---------------start------------->8---
> #+HTML_DOCTYPE: html5
> #+OPTIONS: html5-fancy:t
>
> #+BEGIN_ASIDE
> Lorem Ipsum
> #+END_ASIDE
> --8<---------------cut here---------------end--------------->8---
>
> produces the following body for me:
>
> ,----
> | <body>
> | <div id="content">
> | <h1 class="title">html5</h1>
> | <aside>
> | <p>
> | Lorem Ipsum
> | </p>
> | </aside>
> | </div>
> | <div id="postamble" class="status">
> | <p class="author">Author: Nick Dokos</p>
> | <p class="date">Created: 2013-12-14 Sat 14:30</p>
> | <p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 24.3.50.2 (<a href="http://orgmode.org">Org</a> mode 8.2.3c)</p>
> | <p class="validation"><a href="http://validator.w3.org/check?uri=referer">Validate</a></p>
> | </div>
> | </body>
> `----
>
> Not sure why it says 8.2.3c - I'm running:
>
> Org-mode version 8.2.4 (release_8.2.4-340-g059dc0 @
> /home/nick/elisp/org-mode/lisp/)
>
> GNU Emacs 24.3.50.2 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.10) of
> 2013-07-14 on pierrot
>
> Linux pierrot 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
>
FWIW, I get a body similar to yours but with the correct org mode 
version in "creator":

GNU Emacs 24.3.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.10) of 
2013-07-17 on windy

Org-mode version 8.2.4 (8.2.4-dist @ /home/alant/.emacs.d/org-mode/lisp/)

Linux windy 3.2.0-4-amd64 #1 SMP Debian 3.2.51-1 x86_64 GNU/Linux

Cheers,
Alan

-- 
Alan L Tyree                    http://www2.austlii.edu.au/~alan
Tel:  04 2748 6206              sip:typhoon@iptel.org

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-14 19:40                     ` Nick Dokos
  2013-12-14 21:22                       ` Alan L Tyree
@ 2013-12-14 21:36                       ` Achim Gratz
  2013-12-18 10:16                       ` Catonano
  2 siblings, 0 replies; 38+ messages in thread
From: Achim Gratz @ 2013-12-14 21:36 UTC (permalink / raw)
  To: emacs-orgmode

Nick Dokos writes:
> Not sure why it says 8.2.3c - I'm running:

That looks like the Org version that comes with the trunk Emacs you seem
to be using.

> Org-mode version 8.2.4 (release_8.2.4-340-g059dc0 @
> /home/nick/elisp/org-mode/lisp/)

Most likely org-html-creator-string is pulled in via cus-load.  You
could try if loading testing/org-batch-test-init clears it up.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptation for Waldorf rackAttack V1.04R1:
http://Synth.Stromeko.net/Downloads.html#WaldorfSDada

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-14 17:01                   ` Catonano
  2013-12-14 19:40                     ` Nick Dokos
@ 2013-12-15 10:00                     ` Nicolas Goaziou
  2013-12-15 18:30                     ` Scott Randby
  2 siblings, 0 replies; 38+ messages in thread
From: Nicolas Goaziou @ 2013-12-15 10:00 UTC (permalink / raw)
  To: Catonano; +Cc: Scott Randby, emacs-orgmode

Hello,

Catonano <catonano@gmail.com> writes:

> 2013/12/11 Nicolas Goaziou <n.goaziou@gmail.com>
>
>> Scott Randby <srandby@gmail.com> writes:
>>
>> > I already have the following in my file:
>> >
>> > #+HTML_DOCTYPE: html5
>>
>> You need to upgrade Org then.
>>
>>
> I have Org 8.2.4 and it doesn't work anyway

But your problem may be different from Scott's.


Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-11  9:56   ` Catonano
@ 2013-12-15 10:07     ` Nicolas Goaziou
  2013-12-18 10:04       ` Catonano
  0 siblings, 1 reply; 38+ messages in thread
From: Nicolas Goaziou @ 2013-12-15 10:07 UTC (permalink / raw)
  To: Catonano; +Cc: emacs-orgmode

Hello,

Catonano <catonano@gmail.com> writes:

> I made a temporary repository here
> https://github.com/humanitiesNerd/exploring-org-mode
>
> in case anyone wants to take a look

In "configuration.el" you use

  :org-html-html5-fancy 1

but it should be

  :html-html5-fancy 1


Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-14 17:01                   ` Catonano
  2013-12-14 19:40                     ` Nick Dokos
  2013-12-15 10:00                     ` Nicolas Goaziou
@ 2013-12-15 18:30                     ` Scott Randby
  2 siblings, 0 replies; 38+ messages in thread
From: Scott Randby @ 2013-12-15 18:30 UTC (permalink / raw)
  To: emacs-orgmode

On 12/14/2013 12:01 PM, Catonano wrote:
> 2013/12/11 Nicolas Goaziou <n.goaziou@gmail.com>
> 
>> Scott Randby <srandby@gmail.com> writes:
>>
>>> I already have the following in my file:
>>>
>>> #+HTML_DOCTYPE: html5
>>
>> You need to upgrade Org then.
>>
>>
> I have Org 8.2.4 and it doesn't work anyway
> 

I upgraded Org and my problems were solved. I now have the following in
my file:

#+HTML_DOCTYPE: html5
#+OPTIONS: html5-fancy:t

Scott Randby

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-15 10:07     ` Nicolas Goaziou
@ 2013-12-18 10:04       ` Catonano
  2013-12-18 13:02         ` Nicolas Goaziou
  2013-12-20 20:06         ` Scott Randby
  0 siblings, 2 replies; 38+ messages in thread
From: Catonano @ 2013-12-18 10:04 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1053 bytes --]

Nicolas,

2013/12/15 Nicolas Goaziou <n.goaziou@gmail.com>

> Hello,
>
> Catonano <catonano@gmail.com> writes:
>
> > I made a temporary repository here
> > https://github.com/humanitiesNerd/exploring-org-mode
> >
> > in case anyone wants to take a look
>
> In "configuration.el" you use
>
>   :org-html-html5-fancy 1
>
> but it should be
>
>   :html-html5-fancy 1
>
>
> Regards,
>
> --
> Nicolas Goaziou
>

thank you so much for your suggestion !

I tried but it still doesn't work.

That is, this block

#+ATTR_HTML: :controls controls :width 350
#+BEGIN_VIDEO
#+HTML: <source src="movie.mp4" type="video/mp4">
#+HTML: <source src="movie.ogg" type="video/ogg">
 Your browser does not support the video tag.
#+END_VIDEO


gets translated to

<div controls="controls" width="350" class="video">
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
<p>
Your browser does not support the video tag.
</p>

</div>


As for my versions of Org-mode, Emacs and operating system, I'm gonna write
about it in a minute

Thanks again

[-- Attachment #2: Type: text/html, Size: 2115 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-14 19:40                     ` Nick Dokos
  2013-12-14 21:22                       ` Alan L Tyree
  2013-12-14 21:36                       ` Achim Gratz
@ 2013-12-18 10:16                       ` Catonano
  2013-12-18 16:41                         ` Nick Dokos
  2 siblings, 1 reply; 38+ messages in thread
From: Catonano @ 2013-12-18 10:16 UTC (permalink / raw)
  To: Nick Dokos; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1612 bytes --]

Nick,

2013/12/14 Nick Dokos <ndokos@gmail.com>

> Catonano <catonano@gmail.com> writes:
>
> > 2013/12/11 Nicolas Goaziou <n.goaziou@gmail.com>
>
> What OS? What version of emacs? Are you sure you are not
> picking up the org-mode bits that are bundled with emacs?
>



>
> The following file (which I posted before)
>
> --8<---------------cut here---------------start------------->8---
> #+HTML_DOCTYPE: html5
> #+OPTIONS: html5-fancy:t
>
> #+BEGIN_ASIDE
> Lorem Ipsum
> #+END_ASIDE
> --8<---------------cut here---------------end--------------->8---
>

Admittedly I haven't tested this suggestion of yours. Because I'd like to
avoid writing such stuff in each and every file. Ideally I should be
producing a blog with this so there should be several files.
 Not sure why it says 8.2.3c - I'm running:

>
> Org-mode version 8.2.4 (release_8.2.4-340-g059dc0 @
> /home/nick/elisp/org-mode/lisp/)
>

Package: Org-mode version 8.2.4 (release_8.2.4-321-g0eb020 @
/home/catonano/.emacs.d/el-get/org-mode/lisp/)



>
> GNU Emacs 24.3.50.2 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.10) of
> 2013-07-14 on pierrot
>

Emacs  : GNU Emacs 24.3.1 (x86_64-redhat-linux-gnu, GTK+ Version 3.8.2)
 of 2013-08-14 on buildvm-15.phx2.fedoraproject.org


So both my Emacs and org-mode are older than yours. I installed Emacs with
the standard Fedora package management machinery and org-mode with el-get


> Linux pierrot 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23
> UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
>


Linux xps 3.11.9-200.fc19.x86_64 #1 SMP Wed Nov 20 21:22:24 UTC 2013 x86_64
x86_64 x86_64 GNU/Linux

[-- Attachment #2: Type: text/html, Size: 2935 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-18 10:04       ` Catonano
@ 2013-12-18 13:02         ` Nicolas Goaziou
  2013-12-31 11:06           ` Catonano
  2013-12-20 20:06         ` Scott Randby
  1 sibling, 1 reply; 38+ messages in thread
From: Nicolas Goaziou @ 2013-12-18 13:02 UTC (permalink / raw)
  To: Catonano; +Cc: emacs-orgmode

Hello,

Catonano <catonano@gmail.com> writes:

> I tried but it still doesn't work.
>
> That is, this block
>
> #+ATTR_HTML: :controls controls :width 350
> #+BEGIN_VIDEO
> #+HTML: <source src="movie.mp4" type="video/mp4">
> #+HTML: <source src="movie.ogg" type="video/ogg">
>  Your browser does not support the video tag.
> #+END_VIDEO
>
>
> gets translated to
>
> <div controls="controls" width="350" class="video">
> <source src="movie.mp4" type="video/mp4">
> <source src="movie.ogg" type="video/ogg">
> <p>
> Your browser does not support the video tag.
> </p>
>
> </div>

As specified already in this thread, you also need

  :html-doctype "html5"

in your configuration.


Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-18 10:16                       ` Catonano
@ 2013-12-18 16:41                         ` Nick Dokos
  2013-12-31 11:31                           ` Catonano
  0 siblings, 1 reply; 38+ messages in thread
From: Nick Dokos @ 2013-12-18 16:41 UTC (permalink / raw)
  To: emacs-orgmode

Catonano <catonano@gmail.com> writes:

> 2013/12/14 Nick Dokos <ndokos@gmail.com>
>
>     The following file (which I posted before)
>    
>     --8<---------------cut here---------------start------------->8---
>     #+HTML_DOCTYPE: html5
>     #+OPTIONS: html5-fancy:t
>    
>     #+BEGIN_ASIDE
>     Lorem Ipsum
>     #+END_ASIDE
>     --8<---------------cut here---------------end--------------->8---
>
> Admittedly I haven't tested this suggestion of yours. Because I'd like
> to avoid writing such stuff in each and every file.  Ideally I should
> be producing a blog with this so there should be several files.

I'm not suggesting that you write this stuff in each and every file in
your blog. I'm just suggesting that before you can even have a blog (at
least using this mechanism), you have to first figure out what the
problem is and resolve it. Then you can optimize.

If the above works, then it's straigthforward to translate this into
settings that you can put into your .emacs. If it doesn't, anything else
you or we do is wasted effort (of which there's been plenty in this
thread).

Nick

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-18 10:04       ` Catonano
  2013-12-18 13:02         ` Nicolas Goaziou
@ 2013-12-20 20:06         ` Scott Randby
  2013-12-31 11:42           ` Catonano
  1 sibling, 1 reply; 38+ messages in thread
From: Scott Randby @ 2013-12-20 20:06 UTC (permalink / raw)
  To: emacs-orgmode

On 12/18/2013 05:04 AM, Catonano wrote:
> Nicolas,
> 
> 2013/12/15 Nicolas Goaziou <n.goaziou@gmail.com>
> 
>> Hello,
>>
>> Catonano <catonano@gmail.com> writes:
>>
>>> I made a temporary repository here
>>> https://github.com/humanitiesNerd/exploring-org-mode
>>>
>>> in case anyone wants to take a look
>>
>> In "configuration.el" you use
>>
>>   :org-html-html5-fancy 1
>>
>> but it should be
>>
>>   :html-html5-fancy 1
>>
>>
>> Regards,
>>
>> --
>> Nicolas Goaziou
>>
> 
> thank you so much for your suggestion !
> 
> I tried but it still doesn't work.
> 
> That is, this block
> 
> #+ATTR_HTML: :controls controls :width 350
> #+BEGIN_VIDEO
> #+HTML: <source src="movie.mp4" type="video/mp4">
> #+HTML: <source src="movie.ogg" type="video/ogg">
>  Your browser does not support the video tag.
> #+END_VIDEO
> 
> 
> gets translated to
> 
> <div controls="controls" width="350" class="video">
> <source src="movie.mp4" type="video/mp4">
> <source src="movie.ogg" type="video/ogg">
> <p>
> Your browser does not support the video tag.
> </p>
> 
> </div>

Here is an example that works for me:

--8<---------------cut here---------------start------------->8---
#+HTML_DOCTYPE: html5
#+OPTIONS: html5-fancy:t

#+ATTR_HTML: :controls controls :preload metadata : width 350
#+BEGIN_VIDEO
#+BEGIN_HTML
  <source src="video.webm" />
  Your browser does not support the <code>video</code> tag.
#+END_HTML
#+END_VIDEO

#+ATTR_HTML: :controls controls :id aud-tag :preload metadata
#+BEGIN_AUDIO
#+BEGIN_HTML
  <source src="audio.ogg" />
  <source src="audio.mp3" />
  Your browser does not support the <code>audio</code> tag.
#+END_HTML
#+END_AUDIO
--8<---------------cut here---------------end--------------->8---

Scott Randby

> 
> 
> As for my versions of Org-mode, Emacs and operating system, I'm gonna write
> about it in a minute
> 
> Thanks again
> 

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-18 13:02         ` Nicolas Goaziou
@ 2013-12-31 11:06           ` Catonano
  0 siblings, 0 replies; 38+ messages in thread
From: Catonano @ 2013-12-31 11:06 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 206 bytes --]

Nicolas,

2013/12/18 Nicolas Goaziou <n.goaziou@gmail.com>

> As specified already in this thread, you also need
>
>   :html-doctype "html5"
>
> in your configuration.
>
>
> Regards,
>

that worked. Thanks

[-- Attachment #2: Type: text/html, Size: 609 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-18 16:41                         ` Nick Dokos
@ 2013-12-31 11:31                           ` Catonano
  2013-12-31 12:47                             ` Catonano
  2013-12-31 16:41                             ` Nick Dokos
  0 siblings, 2 replies; 38+ messages in thread
From: Catonano @ 2013-12-31 11:31 UTC (permalink / raw)
  To: Nick Dokos; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1340 bytes --]

Nick,

2013/12/18 Nick Dokos <ndokos@gmail.com>

> I'm not suggesting that you write this stuff in each and every file in
> your blog. I'm just suggesting that before you can even have a blog (at
> least using this mechanism), you have to first figure out what the
> problem is and resolve it. Then you can optimize.
>
> If the above works, then it's straigthforward to translate this into
> settings that you can put into your .emacs. If it doesn't, anything else
> you or we do is wasted effort (of which there's been plenty in this
> thread).
>
>
I'm sorry that you feel this thread to contain wasted effort.

I have to say that I disagree.

In fact, it's solved, it works now, and it works by indicating html5 in the
configuration rather than in a file.

I was probably confused by reading both the manual and the Worg guide.

I see your point of starting from the easy and then figuring how to
generalize. But, you know, cognitive paths are personal.

That's why I published a simple example project for anyone to inspect.

Sometimes wasting effort is due to assuming your peer is traveling along
the same cognitive path that you would.

As you can see, it worked.

Thanks anyway for your help

I think I will have to use your suggestion to move from a configuration
based html5 publishing to a templates based one.

I'll let you know

[-- Attachment #2: Type: text/html, Size: 1967 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-20 20:06         ` Scott Randby
@ 2013-12-31 11:42           ` Catonano
  0 siblings, 0 replies; 38+ messages in thread
From: Catonano @ 2013-12-31 11:42 UTC (permalink / raw)
  To: Scott Randby; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 119 bytes --]

2013/12/20 Scott Randby <srandby@gmail.com>

>
> Here is an example that works for me:
>
>
thank you Scott. Note taken

[-- Attachment #2: Type: text/html, Size: 514 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-09 19:57 ` Nicolas Goaziou
  2013-12-11  9:56   ` Catonano
@ 2013-12-31 11:47   ` Catonano
  2013-12-31 16:28     ` Nick Dokos
  1 sibling, 1 reply; 38+ messages in thread
From: Catonano @ 2013-12-31 11:47 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 459 bytes --]

Nicolas,

2013/12/9 Nicolas Goaziou <n.goaziou@gmail.com>

> > #+HTML_HTML5_FANCY: t
> >
> > in level-0.org
>
> There is no such keyword. Use:
>
>   #+OPTIONS: html5-fancy:t
>
> or set `org-html-html5-fancy' to a non-nil value.
>
>
Thanks. I copied that line from here:
http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html#sec-5

I don't know of this constitutes a bug in the document using that keyword,
but that is something that misled me.

[-- Attachment #2: Type: text/html, Size: 1034 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-31 11:31                           ` Catonano
@ 2013-12-31 12:47                             ` Catonano
  2013-12-31 16:41                             ` Nick Dokos
  1 sibling, 0 replies; 38+ messages in thread
From: Catonano @ 2013-12-31 12:47 UTC (permalink / raw)
  To: Nick Dokos; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 375 bytes --]

Nick,

2013/12/31 Catonano <catonano@gmail.com>

>
> I think I will have to use your suggestion to move from a configuration
> based html5 publishing to a templates based one.
>
> I'll let you know
>

I promised that I would have let you know: here I am: it works even with
templates now.

So I can have my configurations potentially arranged in levels.

That's all good ;-)

[-- Attachment #2: Type: text/html, Size: 902 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-31 11:47   ` Catonano
@ 2013-12-31 16:28     ` Nick Dokos
  0 siblings, 0 replies; 38+ messages in thread
From: Nick Dokos @ 2013-12-31 16:28 UTC (permalink / raw)
  To: emacs-orgmode

Catonano <catonano@gmail.com> writes:

> Nicolas,
>
> 2013/12/9 Nicolas Goaziou <n.goaziou@gmail.com>
>
>     > #+HTML_HTML5_FANCY: t
>     >
>     > in level-0.org
>    
>     There is no such keyword. Use:
>    
>       #+OPTIONS: html5-fancy:t
>    
>     or set `org-html-html5-fancy' to a non-nil value.
>
> Thanks. I copied that line from here:
> http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html#sec-5
>
> I don't know of this constitutes a bug in the document using that keyword, but that is something that misled me.

You should not copy the line: instead, you should insert the template using C-c
C-e #. I'll add a warning to the document.

Nick

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: publishuing in html5
  2013-12-31 11:31                           ` Catonano
  2013-12-31 12:47                             ` Catonano
@ 2013-12-31 16:41                             ` Nick Dokos
  1 sibling, 0 replies; 38+ messages in thread
From: Nick Dokos @ 2013-12-31 16:41 UTC (permalink / raw)
  To: emacs-orgmode

Catonano <catonano@gmail.com> writes:

> Nick,
>
> 2013/12/18 Nick Dokos <ndokos@gmail.com>
>
>     I'm not suggesting that you write this stuff in each and every file in
>     your blog. I'm just suggesting that before you can even have a blog (at
>     least using this mechanism), you have to first figure out what the
>     problem is and resolve it. Then you can optimize.
>    
>     If the above works, then it's straigthforward to translate this into
>     settings that you can put into your .emacs. If it doesn't, anything else
>     you or we do is wasted effort (of which there's been plenty in this
>     thread).
>
> I'm sorry that you feel this thread to contain wasted effort.
>
> I have to say that I disagree.
>
> In fact, it's solved, it works now, and it works by indicating html5 in the configuration rather than in a file.
>
> I was probably confused by reading both the manual and the Worg guide.
>
> I see your point of starting from the easy and then figuring how to generalize. But, you know, cognitive paths are personal.
>
> That's why I published a simple example project for anyone to inspect.
>
> Sometimes wasting effort is due to assuming your peer is traveling along the same cognitive path that you would.
>

Truer words were never uttered... But my interpretation of them differs
from yours :-)

> As you can see, it worked.
>
> Thanks anyway for your help
>
> I think I will have to use your suggestion to move from a configuration based html5 publishing to a templates based one.
>
> I'll let you know

Nick

^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2013-12-31 16:45 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-09 17:46 publishuing in html5 Catonano
2013-12-09 17:59 ` Catonano
2013-12-09 18:48   ` Catonano
2013-12-09 19:53 ` Nick Dokos
2013-12-11  0:41   ` Scott Randby
2013-12-11 12:58     ` Nick Dokos
2013-12-11 14:13       ` Scott Randby
2013-12-11 15:04         ` Nick Dokos
2013-12-11 15:20           ` Scott Randby
2013-12-11 15:24             ` Nicolas Goaziou
2013-12-11 15:47               ` Scott Randby
2013-12-11 16:03                 ` Nicolas Goaziou
2013-12-11 16:30                   ` Scott Randby
2013-12-14 17:01                   ` Catonano
2013-12-14 19:40                     ` Nick Dokos
2013-12-14 21:22                       ` Alan L Tyree
2013-12-14 21:36                       ` Achim Gratz
2013-12-18 10:16                       ` Catonano
2013-12-18 16:41                         ` Nick Dokos
2013-12-31 11:31                           ` Catonano
2013-12-31 12:47                             ` Catonano
2013-12-31 16:41                             ` Nick Dokos
2013-12-15 10:00                     ` Nicolas Goaziou
2013-12-15 18:30                     ` Scott Randby
2013-12-11 15:43         ` Leading headline of a subtree tag export Scott Randby
2013-12-11 15:57           ` Nicolas Goaziou
2013-12-11 16:35             ` Scott Randby
2013-12-11 10:00   ` publishuing in html5 Catonano
2013-12-09 19:57 ` Nicolas Goaziou
2013-12-11  9:56   ` Catonano
2013-12-15 10:07     ` Nicolas Goaziou
2013-12-18 10:04       ` Catonano
2013-12-18 13:02         ` Nicolas Goaziou
2013-12-31 11:06           ` Catonano
2013-12-20 20:06         ` Scott Randby
2013-12-31 11:42           ` Catonano
2013-12-31 11:47   ` Catonano
2013-12-31 16:28     ` Nick Dokos

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).