From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Randby Subject: Re: publishuing in html5 Date: Fri, 20 Dec 2013 15:06:58 -0500 Message-ID: <52B4A362.1040505@gmail.com> References: <87fvq1u7a5.fsf@gmail.com> <87mwk2bf7d.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34483) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vu6Lj-0002Es-Pr for emacs-orgmode@gnu.org; Fri, 20 Dec 2013 15:07:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vu6Ld-0007eA-7J for emacs-orgmode@gnu.org; Fri, 20 Dec 2013 15:07:07 -0500 Received: from mail-ie0-x22e.google.com ([2607:f8b0:4001:c03::22e]:47292) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vu6Ld-0007e0-2C for emacs-orgmode@gnu.org; Fri, 20 Dec 2013 15:07:01 -0500 Received: by mail-ie0-f174.google.com with SMTP id at1so3563987iec.5 for ; Fri, 20 Dec 2013 12:07:00 -0800 (PST) Received: from [192.168.1.111] (cpe-24-165-203-246.neo.res.rr.com. [24.165.203.246]) by mx.google.com with ESMTPSA id x6sm13532278igb.3.2013.12.20.12.06.59 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 20 Dec 2013 12:06:59 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org On 12/18/2013 05:04 AM, Catonano wrote: > Nicolas, > > 2013/12/15 Nicolas Goaziou > >> Hello, >> >> Catonano 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: > #+HTML: > Your browser does not support the video tag. > #+END_VIDEO > > > gets translated to > >
> > >

> Your browser does not support the video tag. >

> >
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 Your browser does not support the video tag. #+END_HTML #+END_VIDEO #+ATTR_HTML: :controls controls :id aud-tag :preload metadata #+BEGIN_AUDIO #+BEGIN_HTML Your browser does not support the audio 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 >