Change description format
Descriptions must now be prefixed by a '#' symbol instead of indented.
This commit is contained in:
parent
76eed7f30d
commit
d7c843ed86
3 changed files with 24 additions and 27 deletions
|
|
@ -213,7 +213,7 @@ pub struct Task {
|
|||
pub until: Option<NaiveDate>,
|
||||
pub except: Vec<NaiveDate>,
|
||||
pub done: Vec<Done>,
|
||||
pub desc: Option<String>,
|
||||
pub desc: Vec<String>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
@ -223,7 +223,7 @@ pub struct Note {
|
|||
pub from: Option<NaiveDate>,
|
||||
pub until: Option<NaiveDate>,
|
||||
pub except: Vec<NaiveDate>,
|
||||
pub desc: Option<String>,
|
||||
pub desc: Vec<String>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
@ -236,7 +236,7 @@ pub struct BirthdaySpec {
|
|||
pub struct Birthday {
|
||||
pub title: String,
|
||||
pub when: BirthdaySpec,
|
||||
pub desc: Option<String>,
|
||||
pub desc: Vec<String>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue