emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nick Dokos <nicholas.dokos@hp.com>
To: Brenton Kenkel <brenton.kenkel@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: HTML export error with file link containing underscores
Date: Fri, 03 Jul 2009 15:35:10 -0400	[thread overview]
Message-ID: <20204.1246649710@gamaville.dokosmarshall.org> (raw)
In-Reply-To: Message from Brenton Kenkel <brenton.kenkel@gmail.com> of "Fri\, 03 Jul 2009 14\:40\:48 EDT." <22f6f9a30907031140x768748e6k9d6b5c247c20929f@mail.gmail.com>

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

Brenton Kenkel <brenton.kenkel@gmail.com> wrote:

> I am having a problem with Org-mode's HTML export, specifically with a local
> file link that contains underscores. My file contains the following link in
> the org-mode source:
> 
> [[file:low_stats/berkeley_brady_2005.pdf][syllabus]]
> 
> and the HTML export produces the following:
> 
> <a href="low_stats/berkeley_[[brady">brady</a>_2005.pdf][syllabus]]
> 
> I have tried escaping the underscores with a backslash, as well as including
> the line "#+OPTIONS: ^:nil *:nil" to disable the use of underscores for
> other functions. None of these fixes produced the correct HTML code. Is this
> a bug, or is there something else I should be doing?

[Please provide version numbers for emacs and org-mode.]

I cannot reproduce this. The following org file:

,----
| 
| * foo
|   [[file:low_stats/berkeley_brady_2005.pdf][syllabus]]
`----

produces this html:


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: HTML output --]
[-- Type: text/xml, Size: 3052 bytes --]

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
               "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
lang="en" xml:lang="en">
<head>
<title>underscores</title>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2009-07-03 15:31:44 EDT"/>
<meta name="author" content="Nick Dokos"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<style type="text/css">
 <!--/*--><![CDATA[/*><!--*/
  html { font-family: Times, serif; font-size: 12pt; }
  .title  { text-align: center; }
  .todo   { color: red; }
  .done   { color: green; }
  .tag    { background-color: #add8e6; font-weight:normal }
  .target { }
  .timestamp { color: #bebebe; }
  .timestamp-kwd { color: #5f9ea0; }
  p.verse { margin-left: 3% }
  pre {
	border: 1pt solid #AEBDCC;
	background-color: #F3F5F7;
	padding: 5pt;
	font-family: courier, monospace;
        font-size: 90%;
        overflow:auto;
  }
  table { border-collapse: collapse; }
  td, th { vertical-align: top; }
  dt { font-weight: bold; }
  div.figure { padding: 0.5em; }
  div.figure p { text-align: center; }
  .linenr { font-size:smaller }
  .code-highlighted {background-color:#ffff00;}
  .org-info-js_info-navigation { border-style:none; }
  #org-info-js_console-label { font-size:10px; font-weight:bold;
                               white-space:nowrap; }
  .org-info-js_search-highlight {background-color:#ffff00; color:#000000;
                                 font-weight:bold; }
  /*]]>*/-->
</style>
<script type="text/javascript">
<!--/*--><![CDATA[/*><!--*/
 function CodeHighlightOn(elem, id)
 {
   var target = document.getElementById(id);
   if(null != target) {
     elem.cacheClassElem = elem.className;
     elem.cacheClassTarget = target.className;
     target.className = "code-highlighted";
     elem.className   = "code-highlighted";
   }
 }
 function CodeHighlightOff(elem, id)
 {
   var target = document.getElementById(id);
   if(elem.cacheClassElem)
     elem.className = elem.cacheClassElem;
   if(elem.cacheClassTarget)
     target.className = elem.cacheClassTarget;
 }
/*]]>*///-->
</script>
</head>
<body>
<div id="content">
<h1 class="title">underscores</h1>


<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#sec-1">1 foo </a></li>
</ul>
</div>
</div>

<div id="outline-container-1" class="outline-2">
<h2 id="sec-1"><span class="section-number-2">1</span> foo </h2>
<div class="outline-text-2" id="text-1">

<p><a href="low_stats/berkeley_brady_2005.pdf">syllabus</a>
</p></div>
</div>
<div id="postamble">
<p class="author"> Author: Nick Dokos
<a href="mailto:nick@gamaville.dokosmarshall.org">&lt;nick@gamaville.dokosmarshall.org&gt;</a>
</p>
<p class="date"> Date: 2009-07-03 15:31:44 EDT</p>
<p class="creator">HTML generated by org-mode 6.28trans in emacs 23</p>
</div>
</div>
</body>
</html>

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



This is with

GNU Emacs 23.0.93.1 (i686-pc-linux-gnu, GTK+ Version 2.12.9) of 2009-05-11 on gamaville.dokosmarshall.org
Org-mode version 6.28trans - that's git latest (more or less).

Thanks,
Nick


[-- Attachment #4: 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

  reply	other threads:[~2009-07-03 19:36 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-03 18:40 HTML export error with file link containing underscores Brenton Kenkel
2009-07-03 19:35 ` Nick Dokos [this message]
2009-07-03 21:23   ` Brenton Kenkel
2009-08-03  4:27     ` Carsten Dominik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20204.1246649710@gamaville.dokosmarshall.org \
    --to=nicholas.dokos@hp.com \
    --cc=brenton.kenkel@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).