From 47ad15097a0b631dee2eb821ea83caa85271f525 Mon Sep 17 00:00:00 2001 From: Igarashi Masanao Date: Sat, 17 Feb 2018 23:39:15 +0900 Subject: [PATCH] Don't use TOC keyword --- ox-rst.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ox-rst.el b/ox-rst.el index 4cfbdfa..e917e6a 100644 --- a/ox-rst.el +++ b/ox-rst.el @@ -811,8 +811,7 @@ CONTENTS is nil. INFO is a plist holding contextual information." (let ((key (org-element-property :key keyword)) (value (org-element-property :value keyword))) (cond - ((string= key "RST") value) - ((string= key "TOC") (downcase value))))) + ((string= key "RST") value)))) ;;;; Latex Environment