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