From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Sebastien Vauban" Subject: Improve visibility for bad links Date: Wed, 16 May 2012 10:00:33 +0200 Message-ID: <80vcjwtv1a.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: 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-mXXj517/zsQ@public.gmane.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org To: emacs-orgmode-mXXj517/zsQ@public.gmane.org >From 1ee99dc8bfe790f691d159048f90d741daa7d231 Mon Sep 17 00:00:00 2001 From: Sebastien Vauban Date: Wed, 16 May 2012 09:57:03 +0200 Subject: [PATCH] Improve visibility for bad links * org-latex.el (org-export-latex-links): Improve visibility for bad links. Use black text on red background instead of "texttt". TINYCHANGE --- lisp/org-latex.el | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/lisp/org-latex.el b/lisp/org-latex.el index 9f58456..fecad5a 100644 --- a/lisp/org-latex.el +++ b/lisp/org-latex.el @@ -2329,7 +2329,8 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER." (save-match-data (funcall fnc (org-link-unescape raw-path) desc 'latex)))) - (t (insert "\\texttt{" desc "}"))))))) + ;; bad link + (t (insert "\\colorbox{red}{" desc "}"))))))) (defun org-export-latex-format-image (path caption label attr &optional shortn) -- 1.7.9 Best regards, Seb -- Sebastien Vauban