Bump version to 0.1.2 and add change log
This commit is contained in:
parent
c1c5a1da16
commit
690121ce58
2 changed files with 35 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
anki-editor -- an Emacs package that helps you create Anki cards in Org-mode
|
||||
anki-editor -- Make Anki Cards in Org-mode
|
||||
|
||||
* Installation
|
||||
|
||||
|
@ -64,3 +64,9 @@ anki-editor -- an Emacs package that helps you create Anki cards in Org-mode
|
|||
* Demo
|
||||
|
||||
[[./demo.gif]]
|
||||
|
||||
* Change Log
|
||||
|
||||
*0.1.2*
|
||||
- Make deck/note insertion commands smarter on choosing insertion point
|
||||
- Bug fixes
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
;;; anki-editor.el --- Create Anki Cards in Org-mode
|
||||
;;; anki-editor.el --- Make Anki Cards in Org-mode
|
||||
;;
|
||||
;; Copyright (C) 2018 Louie Tan <louietanlei@gmail.com>
|
||||
;;
|
||||
;; Filename: anki-editor.el
|
||||
;; Description: Create Anki Cards in Org-mode
|
||||
;; Description: Make Anki Cards in Org-mode
|
||||
;; Author: Louie Tan
|
||||
;; Version: 0.1.1
|
||||
;; Version: 0.1.2
|
||||
;; Package-Requires: ((emacs "25"))
|
||||
;; URL: https://github.com/louietan/anki-editor
|
||||
;;
|
||||
|
@ -14,11 +14,31 @@
|
|||
;;; Commentary:
|
||||
;;
|
||||
;; This package is for people who use Anki as SRS but would like to
|
||||
;; create cards in Org-mode. It does so by using Org-mode's built-in
|
||||
;; HTML backend to generate HTML with specific syntax (e.g. latex)
|
||||
;; translated to the Anki style, then sends requests to anki-connect
|
||||
;; (an Anki addon that runs an HTTP server to expose Anki functions
|
||||
;; as APIs).
|
||||
;; make cards in Org-mode.
|
||||
;;
|
||||
;; With this package, you can make cards from something like:
|
||||
;; (which is inspired by `org-dirll')
|
||||
;;
|
||||
;; * Computing :deck:
|
||||
;; ** Item :note:
|
||||
;; :PROPERTIES:
|
||||
;; :ANKI_NOTE_TYPE: Basic
|
||||
;; :END:
|
||||
;; *** Front
|
||||
;; How to hello world in elisp ?
|
||||
;; *** Back
|
||||
;; #+BEGIN_SRC emacs-lisp
|
||||
;; (message "Hello, world!")
|
||||
;; #+END_SRC
|
||||
;;
|
||||
;; This package leverages Org-mode's built-in HTML backend to
|
||||
;; generate HTML for contents of note fields with specific syntax
|
||||
;; (e.g. latex) translated to Anki style, then save the note to Anki.
|
||||
;;
|
||||
;; For this package to work, you have to setup these external dependencies:
|
||||
;; - curl
|
||||
;; - AnkiConnect, an Anki addon that runs an HTTP server to expose
|
||||
;; Anki functions as RESTful APIs
|
||||
;;
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue