From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: [PATCH] * org-html.el (org-html-handle-links): add an alternate for inline images Date: Tue, 19 Apr 2011 14:18:42 +0530 Message-ID: <81pqoitymt.fsf@gmail.com> References: <1303202089-27231-1-git-send-email-manuel.giraud@univ-nantes.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38111) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QC6cD-0005nI-4y for emacs-orgmode@gnu.org; Tue, 19 Apr 2011 04:48:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QC6cB-0003hd-VH for emacs-orgmode@gnu.org; Tue, 19 Apr 2011 04:48:57 -0400 Received: from mail-pv0-f169.google.com ([74.125.83.169]:39755) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QC6cB-0003hP-Q1 for emacs-orgmode@gnu.org; Tue, 19 Apr 2011 04:48:55 -0400 Received: by pvg4 with SMTP id 4so3706446pvg.0 for ; Tue, 19 Apr 2011 01:48:54 -0700 (PDT) In-Reply-To: <1303202089-27231-1-git-send-email-manuel.giraud@univ-nantes.fr> (Manuel Giraud's message of "Tue, 19 Apr 2011 10:34:49 +0200") 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 Without alt validation fails, right? Jambunathan K. Manuel Giraud writes: > --- > lisp/org-html.el | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/lisp/org-html.el b/lisp/org-html.el > index 5d53478..7a4564d 100644 > --- a/lisp/org-html.el > +++ b/lisp/org-html.el > @@ -888,7 +888,8 @@ OPT-PLIST is the export options list." > (if (string-match "^file:" desc) > (setq desc (substring desc (match-end 0))))) > (setq desc (org-add-props > - (concat "") > + (concat "\"" + (file-name-nondirectory desc) "\"/>") > '(org-protected t)))) > (cond > ((equal type "internal") --