The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Anki::Import - Anki note generation made easy.

VERSION

version 0.009

OVERVIEW

Efficiently generate formatted Anki notes with your text editor for easy import into Anki.

SYNOPSIS

    # Step 1: Create the source file

    # Step 2: Run the anki_import command
      supplied by this module...

    # ...from the command line
    anki_import path/to/source_file.txt

    # or

    # ...from within a perl script
    use Anki::Import;
    anki_import('path/to/source_file.txt');

    # Step 3: Import the resultant files into Anki

DESCRIPTION

Inputting notes into Anki can be a tedious chore. Anki::Import lets you you generate Anki notes with your favorite text editor (e.g. vim, BBEdit, Atom, etc.) so you can enter formatted notes into Anki's database more efficiently.

Steps for creating, processing and imorting new notes

Step 1: Generate the notes with your text editor

First, you create a specially formatted source file which Anki::Import will process. The source file is a simple text file with basic formatting rules you must follow.

See the "General description of the source file" section for details.

Step 2: Process the notes with Anki::Import

Once the source file is created and saved, run the anki_import command from the command line or from a script to generate the import files. This will create a new directory called "anki_import_files" which contains one file for each of the note types generated by Anki::Import and which you will import in the next step. By default, the directory is created in the current directory.

See the "USAGE" section for more details and options.

Step 3: Import the processed notes with Anki

In Anki, open the deck you wish to import and hit Ctrl-I or (Cmd-I on a Mac) to start the import process, navigate to the a file generated by Anki::Import and select one of them.

Next, check Anki's settings to be sure you are importing notes into the proper fields, deck and note type. Also ensure you have the "Allow HTML in fields" option enabled and that you have "Fields separated by: Tab" selected.

Click "Import" and repeat for each note type you are importing.

Consult Anki's documentation for more details on importing and managing your notes.

General description of the source file

The source file contains one or more Anki notes. To make importing easier, each source file should contain notes that will be imported into the same Anki deck.

Creating notes and fields in the source file

Each note in the source file contains fields which should correspond to your existing note types in Anki. Individual notes in the source file are delineated by two or more blank lines. Fields are separated by a single blank line. Fields for each note should be in the same order as your Anki note types to make importing more automatic. All fields must have content or left intentionally blank.

To create an intionally blank field, add a single '`' (backtick) character on a line by itself with blank lines before and after the line with the single backtick.

See the "Source file example" for more help.

IMPORTANT: Save the source file as a plain text file with UTF-8 encoding. UTF-8 is likely the default encoding method for your editor but check your editor's settings and documentation for further details.

Assigning notes to note types

You can indicate which note type a note belongs to by preceding notes with a #note_type comment at the beginning of a line. You can choose any note type name you wish but it is recommended that you use note type names similar to those that exist in your Anki database to make importing the notes easier.

Any notes appearing after a note type comment will be assigned to that note type until a new note type comment is encountered (see the example in the next section). If no note types are indicated in your source file, the "Basic" note type is used.

Note types are used to help Anki::Import ensure other notes of the same type have the same number of fields. If the notes assigned to a particular note type do not all have the same number of fields, an error is thrown so be sure each note has the correct number of fields.

Note: note type sections can be split across the file (i.e. you do not have to group the notes of a particular note type together).

Applying text formatting to your notes

Learning how to format the source file is key to getting Anki to import your notes properly and getting the most out of Anki::Import.

Following a few simple rules, you can assign notes to a note type, preserve whitespace in fields, create bold text, create blank lines in your fields, indicate which fields are blank and generate simple lists. Study the example below for details.

Note: Lines containing only whitespace characters are treated as blank lines.

Source file example

Below is an example of how to format a source data file. Note that the column on the right containing comments for this example are not permitted in an actual source data file.

    # Basic                              # Any notes below here to the next
                                         # note type comment are assigned to
                                         # the 'Basic' note type

                                         # You can have blank lines between the
                                         # note type comment and the next
                                         # question.

    What is the first day of the week?   # Question 1, Field 1
                                         # Blank line here indicates a new field.
    Monday.                              # Question 1, Field 2

                                         # Add two or more blank lines between
                                           questions



    How many days of the week are there? # Question 2, Field 1

    Our caldendar                        # Question 2, Field 2
    has seven days                       # Answers can run
    in a week                            # across one or more lines but
                                         # will be imported as a single
                                         # line into Anki.




    # less_basic                         # New note type called "less_basic"
                                         # with 3 fields
    What is the third day of week?       # Question 3, Field 1

    Wednesday                            # Question 3, Field 2

    Wed.                                 # Question 3, Field 3


    Put another question here.

    Here is an answer that has
    `                                    # Insert a blank line into a field
    a blank line in it.                  # with a single backtick character
                                         # surround by lines with text



    What does this code do?              # Another less_basic question

    ```                                  # Preserve whitespace in a field with 3
                                         # backticks on a single line
    This_is_some_code {
        print 'Whitespace will be        # Whitespace is preserved between the
               preserved';               # sets of triple backticks
    }
    ```                                  # end whitespace preservation

    Answer goes here.



    Final question                       # Field 1

    `                                    # Field 2 is blank. Use single backtick
                                         # on a line surrouned by blank lines.
    This is *in bold*                    # Field 3 has bold words
    `                                    # and a blank line
    This is %an,unordered,list%          # and uses percent sign with comma
                                         # delimited text to generate an
                                         # unordered HTML list, with one item for
                                         # each term separated with commas

USAGE

anki_import can be run from the command line or from within another perl script. It behaves the same way in both environments.

Command line usage

Anki::Import provides a command for generating import files:

    anki_import source_file [parent_dir] [verbosity_level]

The command processes the source file and generates files to be imported into Anki, one file for each note type. These files are placed in a directory called anki_import_files. This directory is placed in the current working directory by default.

Note: All previously generated files of a particular note type will be overwritten by this command without warning.

parent_dir is an optional argument containing the path you want Anki::Import to save the files for output.

$verbosity can be set to either --verbose (-v) or --vverbose (-vv) for verbosity and maximum verbosity, respectively.

From a script

Invoking the anki_import function mirrors the arguments used from the command line:

anki_import($source_file, [$parent_dir], [$verbosity]);

See the "Command line usage" for more details on the optional arguments.

REQUIRES

SUPPORT

Perldoc

You can find documentation for this module with the perldoc command.

  perldoc Anki::Import

Websites

The following websites have more information about this module, and may be of help to you. As always, in addition to those websites please use your favorite search engine to discover more resources.

Source Code

The code is open to the world, and available for you to hack on. Please feel free to browse it and play with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull from your repository :)

https://github.com/sdondley/Anki-Import

  git clone git://github.com/sdondley/Anki-Import.git

BUGS AND LIMITATIONS

You can make new bug reports, and view existing ones, through the web interface at https://github.com/sdondley/Anki-Import/issues.

SEE ALSO

Anki documentation

AUTHOR

Steve Dondley <s@dondley.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2018 by Steve Dondley.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.