An Emacs package to open Markdown files in Arto, a native macOS Markdown reader.
- Emacs 27.1+
- Arto.app v0.15.0+ installed at
/Applications/Arto.app(configurable)
(package-vc-install "https://github.com/arto-app/arto.el")(use-package arto
:vc (:url "https://github.com/arto-app/arto.el"))Clone this repository and add it to your load-path:
(add-to-list 'load-path "/path/to/arto.el")
(require 'arto)| Command | Description |
|---|---|
M-x arto-open |
Open the current file in Arto |
C-u M-x arto-open |
Prompt for a file to open in Arto |
M-x arto-version |
Show the version of the Arto executable |
;; Path to the Arto application bundle (default: "/Applications/Arto.app")
(setq arto-path "/Applications/Arto.app")Or with use-package:
(use-package arto
:custom
(arto-path "/Applications/Arto.app"))MIT