Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-14 Thread Nicolas Goaziou
Hello, William Crandall bc3141...@gmail.com writes: I confess I am puzzled by the choice to drop the ability to apply attributes to links. That's not a choice /per se/, merely an annoying side-effect of moving to an overall better paradigm. Org input:

Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-09 Thread Nicolas Goaziou
Hello, William Crandall bc3141...@gmail.com writes: You mentioned before using filters. I take it these are the ones described in org-export-filters.el (line 1775), The Filter System. Has anyone written up any worked examples of these? org-e-ascii.el and org-e-html.el both use filters.

Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-09 Thread William Crandall
Hello Nicolas, Many thanks for explaining the logic and functionality of the new exporter. I confess I am puzzled by the choice to drop the ability to apply attributes to links. The use case I'm aiming for is a standard HTML feature: 3.2.3.2 The 'title' attribute The title attribute

Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-08 Thread Nicolas Goaziou
Hello, William Crandall bc3141...@gmail.com writes: ATTR_HTML is only for paragraphs, not links. This puzzles me, because (1) the old exporter works fine on links that are inside paragraphs, as my example showed, and (2) the Manual says ATTR_HTML lines are for links: That's a major change

Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-08 Thread William Crandall
Hello Nicolas, Yes, thanks for explanation and code update. It works as you describe, as you can see below. This is a change; now all links within a paragraph are given (inherit) the same ATTR_HTML. Is it possible with the new exporter to add ATTR_HTML attributes to individual link elements?

Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-08 Thread Nicolas Goaziou
Hello, William Crandall bc3141...@gmail.com writes: This is a change; now all links within a paragraph are given (inherit) the same ATTR_HTML. Indeed. Is it possible with the new exporter to add ATTR_HTML attributes to individual link elements? No, it isn't possible to control individual

Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-08 Thread William Crandall
Ah, that is a pity. Seems like a step back, in allowable specificity. As it was possible in the old. You mentioned before using filters. I take it these are the ones described in org-export-filters.el (line 1775), The Filter System. Has anyone written up any worked examples of these? And, is

Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-07 Thread Nicolas Goaziou
Hello, William Crandall bc3141...@gmail.com writes: If org-mode source text is: -- A paragraph about #+ATTR_HTML: title=Link hover text [[http://orgmode.org]] exalting new emacs mode... --

Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-07 Thread William Crandall
Hello Nicolas, Thanks for your email. You write: ATTR_HTML is only for paragraphs, not links. This puzzles me, because (1) the old exporter works fine on links that are inside paragraphs, as my example showed, and (2) the Manual says ATTR_HTML lines are for links: 12.5.4 Links in HTML export

Re: [O] org-e-html: Including ATTR_HTML: title=hover text

2012-06-06 Thread William Crandall
Also, any chance of getting (parentheses) around a link WITH a title, but without ( extra spaces )? Org input: -- A paragraph about a new mode ( #+ATTR_HTML: title=Link hover text [[./orgmode][org-mode]] ) that is really cool...