summaryrefslogtreecommitdiff
path: root/README.md
blob: 1c73beffa1fa311e123a5222ec20eb6599fb9e4b (plain)
1
2
3
4
5
6
7
```lisp
(let ((url "https://raw.github.com/kyleam/bog/master/README.org")
      (buffer (generate-new-buffer "*Bog README*")))
  (switch-to-buffer-other-window buffer)
  (url-insert-file-contents url)
  (org-mode))
```