docs: update STATUS.md

This commit is contained in:
PoiScript 2019-01-21 22:51:40 +08:00
parent 64535641c1
commit 918b14de52
3 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,9 @@
- [ ] Dynamic Blocks - [ ] Dynamic Blocks
- [x] Footnote Definitions - [x] Footnote Definitions
- [ ] Inlinetasks - [ ] Inlinetasks
- [ ] Plain Lists and Items - [x] Plain Lists and Items
- [x] Nested List
- [ ] Nested List Indentation
- [ ] Property Drawers - [ ] Property Drawers
- [ ] Tables - [ ] Tables

View file

@ -50,7 +50,6 @@ impl List {
} }
// returns (contents_begin, contents_end) // returns (contents_begin, contents_end)
// TODO: handle nested list
pub fn parse_item(src: &str, ident: usize) -> (usize, usize) { pub fn parse_item(src: &str, ident: usize) -> (usize, usize) {
let beg = src[ident..].find(' ').map(|i| ident + i + 1).unwrap(); let beg = src[ident..].find(' ').map(|i| ident + i + 1).unwrap();
let mut lines = lines!(src); let mut lines = lines!(src);

View file

@ -433,7 +433,6 @@ impl<'a> Iterator for Parser<'a> {
if self.off >= end { if self.off >= end {
self.end() self.end()
} else { } else {
// TODO: handle nested list
self.next_ele(end) self.next_ele(end)
} }
} }