Export Pod

ExportPod {
    execute {
        validate(config)
        prepareNotesForExport
        plant
    }
}

prepareNotesForExport {
    if !config.includeStubs {
        notes = _.reject(notes, { stub: true });
    }
}

Backlinks