org-modeでemacs-htmlizeのインストール

2020年2月4日火曜日

org-mode

t f B! P L
Windows上のemacs26.3でorg-modeからCtrl-c Ctrl-e h oでHTMLを生成しようとしたら、"Please install htmlize from https://github.com/hniksic/emacs-htmlize"とメッセージが出てHTMLを生成できません。仕方ないのでemacs-htmlizeをインストールしました。

準備

Melpaというリポジトリからインストールできるらしいので、.emacsに以下を追加します。Windowsでは、.emacsはC:\ユーザー\ユーザー名\AppData\Roaming\.emacsにあります。

(require 'package)
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
                    (not (gnutls-available-p))))
       (proto (if no-ssl "http" "https")))
  (when no-ssl
    (warn "\
Your version of Emacs does not support SSL connections,
which is unsafe because it allows man-in-the-middle attacks.
There are two things you can do about this warning:
1. Install an Emacs version that does support SSL and be safe.
2. Remove this warning from your init file so you won't see it again."))
  ;; Comment/uncomment these two lines to enable/disable MELPA and MELPA Stable as desired
  (add-to-list 'package-archives (cons "melpa" (concat proto "://melpa.org/packages/")) t)
  ;;(add-to-list 'package-archives (cons "melpa-stable" (concat proto "://stable.melpa.org/packages/")) t)
  (when (< emacs-major-version 24)
    ;; For important compatibility libraries like cl-lib
    (add-to-list 'package-archives (cons "gnu" (concat proto "://elpa.gnu.org/packages/")))))
(package-initialize)

インストール

emacsを再起動して、M-x package-list-packagesを実行すると、パッケージ一覧が表示されます。
M-x package-list-packages
パッケージ一覧から、Ctrl-s等を使ってhtmlzeを探します。
htmlizeを検索

htmlizeの行でリターンを押すと、下側に詳細ウィンドウが表示されます。詳細ウィンドウの「Install」部分をクリックすると、インストールが始まります。 インストールが終了すると、(installed)と表示されます。
htmlizeのインストール完了
 htmlizeをインストールすると、無事org-modeでHTMLが生成できました。

このブログを検索

ブログアーカイブ

QooQ