2017-05-04 3 views
0

텍스트 섹션을 영구히 강조 표시하기 위해 Emacs에 확장자 BookMark+을 사용합니다. Screenshotorg-mode에서 bookmark +를 사용할 때 html로 강조 표시 내보내기

일반 html 내보내기를 사용할 때 강조 표시를 미러링 할 수 있습니까? reveal.js 내보내기를 하시겠습니까?

는 내가뿐만 아니라 txt 파일을 추가 할 것을 권고 한

, 그것은 도움이 과정 단순화 : 조직 모드 수출이 통합하는 것은 쉽지 않다 TextFile

답변

0

,하지만 당신은 아마 이것이 얻을 위해 할 수있는 하이라이트가있는 html 파일.

(let* ((html-buffer (htmlize-buffer)) 
     (html (with-current-buffer html-buffer 
       (buffer-string)))) 
    (with-temp-file "test.html" 
    (insert html)) 
    (kill-buffer html-buffer)) 

(browse-url "test.html")