Example #1
0
def open_anthology(anthology_name):
    note_names = anthologies[anthology_name]
    run_marked_concat(note_names)
Example #2
0
def view_tagged_notes(tag):
    db.populate_notes_by_tag()
    notes = db.notes_by_tag[tag]
    run_marked_concat(notes)
Example #3
0
def view_tagged_notes(db, tag):
    db.populate_notes_by_tag()
    notes = db.notes_by_tag[tag]
    run_marked_concat(notes)
Example #4
0
def open_anthology(db, anthology_name):
    note_names = anthologies[anthology_name]
    run_marked_concat(note_names)