do some work on jrnl
This commit is contained in:
parent
d78a0b1c09
commit
bd60655fcc
5 changed files with 28 additions and 342 deletions
|
@ -1,9 +1,12 @@
|
|||
use owo_colors::OwoColorize;
|
||||
use std::{fs, io, path::PathBuf};
|
||||
use std::{
|
||||
fs, io,
|
||||
path::{Path, PathBuf},
|
||||
};
|
||||
|
||||
use crate::md::Doc;
|
||||
|
||||
pub fn list_entries(path: PathBuf) -> io::Result<()> {
|
||||
pub fn list_entries(path: &Path) -> io::Result<()> {
|
||||
let file = fs::read_to_string(path)?;
|
||||
|
||||
if let Some(doc) = Doc::new(&file) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue