diff --git a/ox-linuxmag-fr.el b/ox-linuxmag-fr.el index e7a827f..babe355 100644 --- a/ox-linuxmag-fr.el +++ b/ox-linuxmag-fr.el @@ -58,6 +58,7 @@ `((template . ox-linuxmag-fr--template) (bold . ox-linuxmag-fr--bold) (code . ox-linuxmag-fr--code) + (verbatim . ox-linuxmag-fr--code) (headline . ox-linuxmag-fr--headline) (italic . ox-linuxmag-fr--italic) (item . ox-linuxmag-fr--format-contents) diff --git a/test/ox-linuxmag-fr-tests.el b/test/ox-linuxmag-fr-tests.el index 0676bac..fe57483 100644 --- a/test/ox-linuxmag-fr-tests.el +++ b/test/ox-linuxmag-fr-tests.el @@ -112,6 +112,10 @@ hashtables. OX-LINUXMAG-FR-BASENAME is a string." (ox-linuxmag-fr-tests-export "Test ~foo~") (should (ox-linuxmag-fr-tests-contain "Test foo"))) +(ert-deftest ox-linuxmag-fr-tests-verbatim () + (ox-linuxmag-fr-tests-export "Test =foo=") + (should (ox-linuxmag-fr-tests-contain "Test foo"))) + (ert-deftest ox-linuxmag-fr-tests-headline-numbered () (ox-linuxmag-fr-tests-export "* Titre 1\n** Titre 1.1") (should (ox-linuxmag-fr-tests-contain "1. Titre 1"))