Browse Source

org-export: Apply property change to radio-target elements

* EXPERIMENTAL/org-e-html.el (org-e-html-radio-target): Apply property
  change to radio-target elements.
* EXPERIMENTAL/org-e-latex.el (org-e-latex-radio-target): Apply
  property change to radio-target elements.
* EXPERIMENTAL/org-e-odt.el (org-e-odt-radio-target): Apply property
  change to radio-target elements.
Nicolas Goaziou 13 years ago
parent
commit
3abf884c49
3 changed files with 3 additions and 3 deletions
  1. 1 1
      EXPERIMENTAL/org-e-html.el
  2. 1 1
      EXPERIMENTAL/org-e-latex.el
  3. 1 1
      EXPERIMENTAL/org-e-odt.el

+ 1 - 1
EXPERIMENTAL/org-e-html.el

@@ -2703,7 +2703,7 @@ holding contextual information."
 TEXT is the text of the target.  INFO is a plist holding
 TEXT is the text of the target.  INFO is a plist holding
 contextual information."
 contextual information."
   (let ((id (org-export-solidify-link-text
   (let ((id (org-export-solidify-link-text
-	     (org-element-property :raw-value radio-target))))
+	     (org-element-property :value radio-target))))
     (format "<a id=\"%s\" name=\"%s\">%s</a>" id id text)))
     (format "<a id=\"%s\" name=\"%s\">%s</a>" id id text)))
 
 
 
 

+ 1 - 1
EXPERIMENTAL/org-e-latex.el

@@ -1655,7 +1655,7 @@ TEXT is the text of the target.  INFO is a plist holding
 contextual information."
 contextual information."
   (format "\\label{%s}%s"
   (format "\\label{%s}%s"
 	  (org-export-solidify-link-text
 	  (org-export-solidify-link-text
-	   (org-element-property :raw-value radio-target))
+	   (org-element-property :value radio-target))
 	  text))
 	  text))
 
 
 
 

+ 1 - 1
EXPERIMENTAL/org-e-odt.el

@@ -4154,7 +4154,7 @@ TEXT is the text of the target.  INFO is a plist holding
 contextual information."
 contextual information."
   (org-e-odt-format-anchor
   (org-e-odt-format-anchor
    text (org-export-solidify-link-text
    text (org-export-solidify-link-text
-	 (org-element-property :raw-value radio-target))))
+	 (org-element-property :value radio-target))))
 
 
 
 
 ;;;; Special Block
 ;;;; Special Block