emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* html export - howto change UP|HOME link style?
@ 2009-11-14 16:51 Eraldo Helal
  2009-11-14 22:22 ` Bernt Hansen
  0 siblings, 1 reply; 15+ messages in thread
From: Eraldo Helal @ 2009-11-14 16:51 UTC (permalink / raw)
  To: Org-Mode; +Cc: Eraldo Helal


[-- Attachment #1.1: Type: text/plain, Size: 114 bytes --]

How can I make style changes to "UP and HOME" links? (#+LINK_UP/HOME)
without messing with the other link styles?

[-- Attachment #1.2: Type: text/html, Size: 124 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

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

* Re: html export - howto change UP|HOME link style?
  2009-11-14 16:51 html export - howto change UP|HOME link style? Eraldo Helal
@ 2009-11-14 22:22 ` Bernt Hansen
  2009-11-14 22:52   ` Sebastian Rose
  2009-11-14 23:02   ` Sebastian Rose
  0 siblings, 2 replies; 15+ messages in thread
From: Bernt Hansen @ 2009-11-14 22:22 UTC (permalink / raw)
  To: Eraldo Helal; +Cc: Org-Mode

Eraldo Helal <eraldo@eraldo.org> writes:

> How can I make style changes to "UP and HOME" links? (#+LINK_UP/HOME) without messing with the other
> link styles?

You should use CSS for this but...

the up and home links seem to be inside the <head>..</head> section of
the page and not the <body>..</body> section.  This looks strange to me.

The up and home links also have style applied to them which should
probably be removed so that CSS can completely control the look of the
links.

Part of the export buffer for a test org file looks like this.

,----[ test.org exported to HTML buffer ]
| <head>
| <div style="text-align:right;font-size:70%;white-space:nowrap;">
|  <a accesskey="h" href="up_goes_here"> UP </a>
|  |
|  <a accesskey="H" href="home_goes_there"> HOME </a>
| </div>
| 
| <title>test.org</title>
`----

Shouldn't the up and home links both be moved to the body of the page,
stripped of their in-line style info (text-align, font-size,
white-space) and use CSS for this instead?  I think that might be more
flexible for formatting.

-Bernt

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-14 22:22 ` Bernt Hansen
@ 2009-11-14 22:52   ` Sebastian Rose
  2009-11-14 23:02   ` Sebastian Rose
  1 sibling, 0 replies; 15+ messages in thread
From: Sebastian Rose @ 2009-11-14 22:52 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: Eraldo Helal, Org-Mode

Bernt Hansen <bernt@norang.ca> writes:
> ,----[ test.org exported to HTML buffer ]
> | <head>
> | <div style="text-align:right;font-size:70%;white-space:nowrap;">
> |  <a accesskey="h" href="up_goes_here"> UP </a>
> |  |
> |  <a accesskey="H" href="home_goes_there"> HOME </a>
> | </div>
> | 
> | <title>test.org</title>
> `----
>
> Shouldn't the up and home links both be moved to the body of the page,
> stripped of their in-line style info (text-align, font-size,
> white-space) and use CSS for this instead?  I think that might be more
> flexible for formatting.


Yes, true. This is a bug (not valid and links will not show up in some
browsers).


I'll take a look. Maybe I can find it...


  Sebastian

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-14 22:22 ` Bernt Hansen
  2009-11-14 22:52   ` Sebastian Rose
@ 2009-11-14 23:02   ` Sebastian Rose
  2009-11-15  5:13     ` Eraldo Helal
  2009-11-17 14:12     ` Carsten Dominik
  1 sibling, 2 replies; 15+ messages in thread
From: Sebastian Rose @ 2009-11-14 23:02 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: Eraldo Helal, Org-Mode, carsten.dominik

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

Bernt Hansen <bernt@norang.ca> writes:
> ,----[ test.org exported to HTML buffer ]
> | <head>
> | <div style="text-align:right;font-size:70%;white-space:nowrap;">
> |  <a accesskey="h" href="up_goes_here"> UP </a>
> |  |
> |  <a accesskey="H" href="home_goes_there"> HOME </a>
> | </div>
> | 
> | <title>test.org</title>
> `----
>
> Shouldn't the up and home links both be moved to the body of the page,
> stripped of their in-line style info (text-align, font-size,
> white-space) and use CSS for this instead?  I think that might be more
> flexible for formatting.



This patch fixes it. I've put the LINK_UP and ..._HOME directly after
the <body> tag:

<body>
   -----  HERE ---
  <div id="content">

..


The links can be formated customizing the variable

          `org-export-html-home/up-format'



  Sebastian



[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: org-html-link-up-and-home.patch --]
[-- Type: text/x-diff, Size: 1197 bytes --]

diff --git a/lisp/org-html.el b/lisp/org-html.el
index 11a692e..66cc86b 100644
--- a/lisp/org-html.el
+++ b/lisp/org-html.el
@@ -753,7 +753,6 @@ PUB-DIR is set, use this as the publishing directory."
 <html xmlns=\"http://www.w3.org/1999/xhtml\"
 lang=\"%s\" xml:lang=\"%s\">
 <head>
-%s
 <title>%s</title>
 <meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>
 <meta name=\"generator\" content=\"Org-mode\"/>
@@ -765,6 +764,7 @@ lang=\"%s\" xml:lang=\"%s\">
 </head>
 <body>
 <div id=\"content\">
+%s
 "
 		 (format
 		  (or (and (stringp org-export-html-xml-declaration)
@@ -775,17 +775,17 @@ lang=\"%s\" xml:lang=\"%s\">
 		      "")
 		  (or charset "iso-8859-1"))
 		 language language
+		 (org-html-expand title)
+		 (or charset "iso-8859-1")
+		 date author description keywords
+		 style
 		 (if (or link-up link-home)
 		     (concat
 		      (format org-export-html-home/up-format
 			      (or link-up link-home)
 			      (or link-home link-up))
 		      "\n")
-		   "")
-		 (org-html-expand title)
-		 (or charset "iso-8859-1")
-		 date author description keywords
-		 style))
+		   "")))
 
         (org-export-html-insert-plist-item opt-plist :preamble opt-plist)
 

[-- Attachment #3: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-14 23:02   ` Sebastian Rose
@ 2009-11-15  5:13     ` Eraldo Helal
  2009-11-15  5:52       ` Sebastian Rose
  2009-11-17 14:12     ` Carsten Dominik
  1 sibling, 1 reply; 15+ messages in thread
From: Eraldo Helal @ 2009-11-15  5:13 UTC (permalink / raw)
  To: Sebastian Rose; +Cc: Bernt Hansen, Org-Mode, carsten.dominik


[-- Attachment #1.1: Type: text/plain, Size: 323 bytes --]

> This patch fixes it. I've put the LINK_UP and ..._HOME directly after
> the <body> tag:
>
> <body>
>   -----  HERE ---
>  <div id="content">
>
 How can I now style them with css ...without messing with the other links?
> By defining links in "body" for UP and HOME and defining links again in
"content" for rest?

Eraldo

[-- Attachment #1.2: Type: text/html, Size: 644 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-15  5:13     ` Eraldo Helal
@ 2009-11-15  5:52       ` Sebastian Rose
  2009-11-17  1:31         ` Eraldo Helal
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Rose @ 2009-11-15  5:52 UTC (permalink / raw)
  To: Eraldo Helal; +Cc: Bernt Hansen, Org-Mode, carsten.dominik

Eraldo Helal <eraldo@eraldo.org> writes:

>> This patch fixes it. I've put the LINK_UP and ..._HOME directly after
>> the <body> tag:
>>
>> <body>
>>   -----  HERE ---
>>  <div id="content">
>>
>  How can I now style them with css ...without messing with the other links?
>> By defining links in "body" for UP and HOME and defining links again in
> "content" for rest?
>
> Eraldo

Example:

  1. M-x customize-variable RET org-export-html-home/up-format RET
  2. Add a `id' property the <div style=....> element, e.g.
       <div id="home-up-link" style="...">

  3. Use the technique you use for CSS styling and add entries to handle
  those links:

    .home-up-link a { font-weight:bold; border:1px solid #ff0000; }

  optionally:

    .home-up-link a:active  { /* when the mouse button is down... */ }
    .home-up-link a:hover   { /* when the mouse is on the link */ }
    .home-up-link a:visited { /* what it looks like after visiting the
                                 target */ } 




Best wishes

  Sebastian

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-15  5:52       ` Sebastian Rose
@ 2009-11-17  1:31         ` Eraldo Helal
  2009-11-17  3:17           ` Sebastian Rose
  0 siblings, 1 reply; 15+ messages in thread
From: Eraldo Helal @ 2009-11-17  1:31 UTC (permalink / raw)
  To: Sebastian Rose; +Cc: Bernt Hansen, Org-Mode, carsten.dominik


[-- Attachment #1.1: Type: text/plain, Size: 144 bytes --]

Thanks again for this Sebastiran!
Will this be changed in newer versions of orgmode?
If so... I will just wait.

Greetings from Austria,
Eraldo

[-- Attachment #1.2: Type: text/html, Size: 163 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-17  1:31         ` Eraldo Helal
@ 2009-11-17  3:17           ` Sebastian Rose
  0 siblings, 0 replies; 15+ messages in thread
From: Sebastian Rose @ 2009-11-17  3:17 UTC (permalink / raw)
  To: Eraldo Helal; +Cc: Bernt Hansen, Org-Mode, carsten.dominik

Eraldo Helal <eraldo@eraldo.org> writes:
> Thanks again for this Sebastiran!
> Will this be changed in newer versions of orgmode?
> If so... I will just wait.


Yes, I think so - simply because it's not valid.

The id of the <div> element will be "org-div-home-and-up" as I see in
the current git version.


I guess Carsten is very busy at the moment because of all those patches
and changes lately. Also, there is pressure to get all important changes
into the next release of Emacs, if I got that right.


As I assume you follow the git repo, you could just add a local branch
and patch lisp/html.el in the mean time. You could delete it, once the
fix is in.


  Sebastian

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-14 23:02   ` Sebastian Rose
  2009-11-15  5:13     ` Eraldo Helal
@ 2009-11-17 14:12     ` Carsten Dominik
  2009-11-17 14:51       ` Sebastian Rose
  1 sibling, 1 reply; 15+ messages in thread
From: Carsten Dominik @ 2009-11-17 14:12 UTC (permalink / raw)
  To: Sebastian Rose; +Cc: Bernt Hansen, Eraldo Helal, Org-Mode

OK, I have applied the patch.

But:  Is it really correct that these links should be inside the  
content div?

- Cartsen

On Nov 15, 2009, at 12:02 AM, Sebastian Rose wrote:

> Bernt Hansen <bernt@norang.ca> writes:
>> ,----[ test.org exported to HTML buffer ]
>> | <head>
>> | <div style="text-align:right;font-size:70%;white-space:nowrap;">
>> |  <a accesskey="h" href="up_goes_here"> UP </a>
>> |  |
>> |  <a accesskey="H" href="home_goes_there"> HOME </a>
>> | </div>
>> |
>> | <title>test.org</title>
>> `----
>>
>> Shouldn't the up and home links both be moved to the body of the  
>> page,
>> stripped of their in-line style info (text-align, font-size,
>> white-space) and use CSS for this instead?  I think that might be  
>> more
>> flexible for formatting.
>
>
>
> This patch fixes it. I've put the LINK_UP and ..._HOME directly after
> the <body> tag:
>
> <body>
>   -----  HERE ---
>  <div id="content">
>
> ..
>
>
> The links can be formated customizing the variable
>
>          `org-export-html-home/up-format'
>
>
>
>  Sebastian
>
>
> diff --git a/lisp/org-html.el b/lisp/org-html.el
> index 11a692e..66cc86b 100644
> --- a/lisp/org-html.el
> +++ b/lisp/org-html.el
> @@ -753,7 +753,6 @@ PUB-DIR is set, use this as the publishing  
> directory."
> <html xmlns=\"http://www.w3.org/1999/xhtml\"
> lang=\"%s\" xml:lang=\"%s\">
> <head>
> -%s
> <title>%s</title>
> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>
> <meta name=\"generator\" content=\"Org-mode\"/>
> @@ -765,6 +764,7 @@ lang=\"%s\" xml:lang=\"%s\">
> </head>
> <body>
> <div id=\"content\">
> +%s
> "
> 		 (format
> 		  (or (and (stringp org-export-html-xml-declaration)
> @@ -775,17 +775,17 @@ lang=\"%s\" xml:lang=\"%s\">
> 		      "")
> 		  (or charset "iso-8859-1"))
> 		 language language
> +		 (org-html-expand title)
> +		 (or charset "iso-8859-1")
> +		 date author description keywords
> +		 style
> 		 (if (or link-up link-home)
> 		     (concat
> 		      (format org-export-html-home/up-format
> 			      (or link-up link-home)
> 			      (or link-home link-up))
> 		      "\n")
> -		   "")
> -		 (org-html-expand title)
> -		 (or charset "iso-8859-1")
> -		 date author description keywords
> -		 style))
> +		   "")))
>
>         (org-export-html-insert-plist-item opt-plist :preamble opt- 
> plist)
>

- Carsten

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-17 14:12     ` Carsten Dominik
@ 2009-11-17 14:51       ` Sebastian Rose
  2009-11-18  5:43         ` Carsten Dominik
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Rose @ 2009-11-17 14:51 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: Bernt Hansen, Eraldo Helal, Org-Mode

Carsten Dominik <carsten.dominik@gmail.com> writes:
> OK, I have applied the patch.
>
> But:  Is it really correct that these links should be inside the content div?

Hm - this is a matter of taste. I thought I had changed it...
Good question.


Pros:

  Some people might restrict the content div to a certain size or frame
  and would like it this way.

Cons:

  If people choose to extract the content div to put it's contents into
  some framework, they probably wouldn't want those links there.

  But they could simply ommit LINK_HOME/UP, so...



One could always put those links in the margin of the content div, or
even outside, using CSS.


  Sebastian



>
> - Cartsen
>
> On Nov 15, 2009, at 12:02 AM, Sebastian Rose wrote:
>
>> Bernt Hansen <bernt@norang.ca> writes:
>>> ,----[ test.org exported to HTML buffer ]
>>> | <head>
>>> | <div style="text-align:right;font-size:70%;white-space:nowrap;">
>>> |  <a accesskey="h" href="up_goes_here"> UP </a>
>>> |  |
>>> |  <a accesskey="H" href="home_goes_there"> HOME </a>
>>> | </div>
>>> |
>>> | <title>test.org</title>
>>> `----
>>>
>>> Shouldn't the up and home links both be moved to the body of the page,
>>> stripped of their in-line style info (text-align, font-size,
>>> white-space) and use CSS for this instead?  I think that might be more
>>> flexible for formatting.
>>
>>
>>
>> This patch fixes it. I've put the LINK_UP and ..._HOME directly after
>> the <body> tag:
>>
>> <body>
>>   -----  HERE ---
>>  <div id="content">
>>
>> ..
>>
>>
>> The links can be formated customizing the variable
>>
>>          `org-export-html-home/up-format'
>>
>>
>>
>>  Sebastian
>>
>>
>> diff --git a/lisp/org-html.el b/lisp/org-html.el
>> index 11a692e..66cc86b 100644
>> --- a/lisp/org-html.el
>> +++ b/lisp/org-html.el
>> @@ -753,7 +753,6 @@ PUB-DIR is set, use this as the publishing directory."
>> <html xmlns=\"http://www.w3.org/1999/xhtml\"
>> lang=\"%s\" xml:lang=\"%s\">
>> <head>
>> -%s
>> <title>%s</title>
>> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>
>> <meta name=\"generator\" content=\"Org-mode\"/>
>> @@ -765,6 +764,7 @@ lang=\"%s\" xml:lang=\"%s\">
>> </head>
>> <body>
>> <div id=\"content\">
>> +%s
>> "
>> 		 (format
>> 		  (or (and (stringp org-export-html-xml-declaration)
>> @@ -775,17 +775,17 @@ lang=\"%s\" xml:lang=\"%s\">
>> 		      "")
>> 		  (or charset "iso-8859-1"))
>> 		 language language
>> +		 (org-html-expand title)
>> +		 (or charset "iso-8859-1")
>> +		 date author description keywords
>> +		 style
>> 		 (if (or link-up link-home)
>> 		     (concat
>> 		      (format org-export-html-home/up-format
>> 			      (or link-up link-home)
>> 			      (or link-home link-up))
>> 		      "\n")
>> -		   "")
>> -		 (org-html-expand title)
>> -		 (or charset "iso-8859-1")
>> -		 date author description keywords
>> -		 style))
>> +		   "")))
>>
>>         (org-export-html-insert-plist-item opt-plist :preamble opt-
>> plist)
>>
>
> - Carsten

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-17 14:51       ` Sebastian Rose
@ 2009-11-18  5:43         ` Carsten Dominik
  2009-11-18 13:11           ` Sebastian Rose
  0 siblings, 1 reply; 15+ messages in thread
From: Carsten Dominik @ 2009-11-18  5:43 UTC (permalink / raw)
  To: Sebastian Rose; +Cc: Bernt Hansen, Eraldo Helal, Org-Mode


On Nov 17, 2009, at 3:51 PM, Sebastian Rose wrote:

> Carsten Dominik <carsten.dominik@gmail.com> writes:
>> OK, I have applied the patch.
>>
>> But:  Is it really correct that these links should be inside the  
>> content div?
>
> Hm - this is a matter of taste. I thought I had changed it...
> Good question.

You did, you moved it into the content div.

>
>
> Pros:
>
>  Some people might restrict the content div to a certain size or frame
>  and would like it this way.
>
> Cons:
>
>  If people choose to extract the content div to put it's contents into
>  some framework, they probably wouldn't want those links there.
>
>  But they could simply ommit LINK_HOME/UP, so...
>
>
>
> One could always put those links in the margin of the content div, or
> even outside, using CSS.

OK, I'll leave it there - we'll see if someone complains.

- Carsten

>
>
>  Sebastian
>
>
>
>>
>> - Cartsen
>>
>> On Nov 15, 2009, at 12:02 AM, Sebastian Rose wrote:
>>
>>> Bernt Hansen <bernt@norang.ca> writes:
>>>> ,----[ test.org exported to HTML buffer ]
>>>> | <head>
>>>> | <div style="text-align:right;font-size:70%;white-space:nowrap;">
>>>> |  <a accesskey="h" href="up_goes_here"> UP </a>
>>>> |  |
>>>> |  <a accesskey="H" href="home_goes_there"> HOME </a>
>>>> | </div>
>>>> |
>>>> | <title>test.org</title>
>>>> `----
>>>>
>>>> Shouldn't the up and home links both be moved to the body of the  
>>>> page,
>>>> stripped of their in-line style info (text-align, font-size,
>>>> white-space) and use CSS for this instead?  I think that might be  
>>>> more
>>>> flexible for formatting.
>>>
>>>
>>>
>>> This patch fixes it. I've put the LINK_UP and ..._HOME directly  
>>> after
>>> the <body> tag:
>>>
>>> <body>
>>>  -----  HERE ---
>>> <div id="content">
>>>
>>> ..
>>>
>>>
>>> The links can be formated customizing the variable
>>>
>>>         `org-export-html-home/up-format'
>>>
>>>
>>>
>>> Sebastian
>>>
>>>
>>> diff --git a/lisp/org-html.el b/lisp/org-html.el
>>> index 11a692e..66cc86b 100644
>>> --- a/lisp/org-html.el
>>> +++ b/lisp/org-html.el
>>> @@ -753,7 +753,6 @@ PUB-DIR is set, use this as the publishing  
>>> directory."
>>> <html xmlns=\"http://www.w3.org/1999/xhtml\"
>>> lang=\"%s\" xml:lang=\"%s\">
>>> <head>
>>> -%s
>>> <title>%s</title>
>>> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>
>>> <meta name=\"generator\" content=\"Org-mode\"/>
>>> @@ -765,6 +764,7 @@ lang=\"%s\" xml:lang=\"%s\">
>>> </head>
>>> <body>
>>> <div id=\"content\">
>>> +%s
>>> "
>>> 		 (format
>>> 		  (or (and (stringp org-export-html-xml-declaration)
>>> @@ -775,17 +775,17 @@ lang=\"%s\" xml:lang=\"%s\">
>>> 		      "")
>>> 		  (or charset "iso-8859-1"))
>>> 		 language language
>>> +		 (org-html-expand title)
>>> +		 (or charset "iso-8859-1")
>>> +		 date author description keywords
>>> +		 style
>>> 		 (if (or link-up link-home)
>>> 		     (concat
>>> 		      (format org-export-html-home/up-format
>>> 			      (or link-up link-home)
>>> 			      (or link-home link-up))
>>> 		      "\n")
>>> -		   "")
>>> -		 (org-html-expand title)
>>> -		 (or charset "iso-8859-1")
>>> -		 date author description keywords
>>> -		 style))
>>> +		   "")))
>>>
>>>        (org-export-html-insert-plist-item opt-plist :preamble opt-
>>> plist)
>>>
>>
>> - Carsten

- Carsten

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-18  5:43         ` Carsten Dominik
@ 2009-11-18 13:11           ` Sebastian Rose
  2009-11-21  8:37             ` Eraldo Helal
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Rose @ 2009-11-18 13:11 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: Bernt Hansen, Eraldo Helal, Org-Mode

Carsten Dominik <carsten.dominik@gmail.com> writes:
[...]
> OK, I'll leave it there - we'll see if someone complains.
>
> - Carsten



Good idea ;-)


   Sebastian

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-18 13:11           ` Sebastian Rose
@ 2009-11-21  8:37             ` Eraldo Helal
  2009-11-21 11:52               ` Carsten Dominik
  0 siblings, 1 reply; 15+ messages in thread
From: Eraldo Helal @ 2009-11-21  8:37 UTC (permalink / raw)
  To: Sebastian Rose; +Cc: Bernt Hansen, Org-Mode, Carsten Dominik


[-- Attachment #1.1: Type: text/plain, Size: 97 bytes --]

It seems to me that they need to be inside because otherwise the page does
not validate.

Eraldo

[-- Attachment #1.2: Type: text/html, Size: 107 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-21  8:37             ` Eraldo Helal
@ 2009-11-21 11:52               ` Carsten Dominik
  2009-11-21 14:34                 ` Eraldo Helal
  0 siblings, 1 reply; 15+ messages in thread
From: Carsten Dominik @ 2009-11-21 11:52 UTC (permalink / raw)
  To: Eraldo Helal; +Cc: Bernt Hansen, Org-Mode


On Nov 21, 2009, at 9:37 AM, Eraldo Helal wrote:

> It seems to me that they need to be inside because otherwise the  
> page does not validate.

I believe this may apple for the <body> tag.  However, I was talking  
about the "content" div, which is something we have in orgmode to give  
people something to hook their css on.

- Carsten

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

* Re: Re: html export - howto change UP|HOME link style?
  2009-11-21 11:52               ` Carsten Dominik
@ 2009-11-21 14:34                 ` Eraldo Helal
  0 siblings, 0 replies; 15+ messages in thread
From: Eraldo Helal @ 2009-11-21 14:34 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: Bernt Hansen, Org-Mode


[-- Attachment #1.1: Type: text/plain, Size: 364 bytes --]

>
> I believe this may apple for the <body> tag.  However, I was talking about
> the "content" div, which is something we have in orgmode to give people
> something to hook their css on.
> - Carsten
>

Oh, I see. =]
I am working on making a homepage with org-mode a.t.m.: http://eraldo.org/
Let's see if the "home|up" links will validate after my next git update.

[-- Attachment #1.2: Type: text/html, Size: 653 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

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

end of thread, other threads:[~2009-11-21 14:34 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-14 16:51 html export - howto change UP|HOME link style? Eraldo Helal
2009-11-14 22:22 ` Bernt Hansen
2009-11-14 22:52   ` Sebastian Rose
2009-11-14 23:02   ` Sebastian Rose
2009-11-15  5:13     ` Eraldo Helal
2009-11-15  5:52       ` Sebastian Rose
2009-11-17  1:31         ` Eraldo Helal
2009-11-17  3:17           ` Sebastian Rose
2009-11-17 14:12     ` Carsten Dominik
2009-11-17 14:51       ` Sebastian Rose
2009-11-18  5:43         ` Carsten Dominik
2009-11-18 13:11           ` Sebastian Rose
2009-11-21  8:37             ` Eraldo Helal
2009-11-21 11:52               ` Carsten Dominik
2009-11-21 14:34                 ` Eraldo Helal

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