From 690121ce582105239f8bf20a9c011b8c6bb1661a Mon Sep 17 00:00:00 2001 From: louie Date: Sun, 28 Jan 2018 17:29:35 +0800 Subject: [PATCH] Bump version to 0.1.2 and add change log --- README.org | 8 +++++++- anki-editor.el | 36 ++++++++++++++++++++++++++++-------- 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/README.org b/README.org index 75344d9..a42aa9f 100644 --- a/README.org +++ b/README.org @@ -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 diff --git a/anki-editor.el b/anki-editor.el index 04ee17f..980adea 100644 --- a/anki-editor.el +++ b/anki-editor.el @@ -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 ;; ;; 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 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;