Skip to content

Commit 96a2c32

Browse files
committed
add high level architecutre. fix jd sort renumber
1 parent 85555c2 commit 96a2c32

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,13 @@ Jotdown `v1.3.0` CLI features -
6060
- action / act
6161
- todov3 / todo
6262

63+
## High level Architecture
64+
65+
![Courtesy https://gitdiagram.com](./design/jotdown_gitdiagram.jpg)
66+
6367
## Important Links
6468

69+
- [Rust - download videos from url](https://github.com/AkhilSharma90/Rust-CLI-Downloader/tree/master)
6570
- [Rust - 100 exercises in Rust!](https://rust-exercises.com/)
6671
- [Medium - Useful Terminal applications](https://levelup.gitconnected.com/awesome-terminal-applications-e4a06022dffa)
6772
- [Rust CLI - Traversable options using crossterms KeyEvent](https://www.reddit.com/r/rust/comments/hz3j1h/how_to_make_a_cli_in_rust_that_allows_the_user_to/)

design/jotdown_gitdiagram.jpg

126 KB
Loading

src/util/helpers.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use crate::util::enums::{IntFloat, StatusColorType};
1515
* @returns {bool} is float point number or not
1616
*/
1717

18-
// FIXME: Remove use of regex, do without regex
18+
// Remove use of regex, do without regex
1919
fn is_float_with_single_digit_decimal_places(num: f64) -> bool {
2020
// let regex = Regex::new(r"^-?\d+\.\d$").unwrap();
2121
// regex.is_match(num.to_string().as_str())
@@ -277,7 +277,6 @@ pub fn get_fractional_number(flt_val: f64) -> i32 {
277277
result.floor() as i32
278278
}
279279

280-
281280
/**
282281
* Extract description from a given text
283282
* @param {String} text

0 commit comments

Comments
 (0)