Skip to content

Commit

Permalink
Updated default options
Browse files Browse the repository at this point in the history
  • Loading branch information
nricciardi committed Jul 7, 2024
1 parent cd1bb1f commit 148eae3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
9 changes: 1 addition & 8 deletions DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,10 @@
- [x] Table of contents without page numbers
- [x] Bibliography

### Known issues

- [x] `nmd dossier add` transform relative paths to absolute paths
- [x] `nmd dossier add` save only 2 paths
- [x] Chapter body are not parsed on Windows
- [ ] `* words *` works
- [x] Table footer doesn't use `tfoot` in HTML format (caused by `build_html` crate)

### Planned Features

- [ ] All modifiers
- [ ] `* words *`
- [x] Use `getset` crate
- [ ] embed_remote_image
- [ ] Possibility to use a different dossier configuration name
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ NMD stands for **New MarkDown**, or for friends, *Nicola MarkDown* (if Stephen B
- [HTML](#html)
- [Develop](#develop)
- [NMD Syntax](#nmd-syntax)
- [Known issues](#known-issues)
- [Author](#author)
- [Contributing](#contributing)
- [License](#license)
Expand Down Expand Up @@ -176,6 +177,11 @@ Develop [check list](DEVELOP.md)
> [!WARNING]
> NMD syntax is working in progress yet, you can contribute following [contribution guidelines](CONTRIBUTING.md)!

### Known issues

Embed SVG images is not support.

## Author

Nicola Ricciardi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ pub struct DossierConfigurationCompilation {
impl Default for DossierConfigurationCompilation {
fn default() -> Self {
Self {
embed_local_image: true,
embed_remote_image: true,
embed_local_image: false,
embed_remote_image: false,
compress_embed_image: false,
strict_image_src_check: true,
parallelization: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl Default for DossierConfigurationTableOfContents {
fn default() -> Self {
Self {
title: String::from("Table of contents"),
include_in_output: false,
include_in_output: true,
page_numbers: false,
plain: false,
maximum_heading_level: 4
Expand Down

0 comments on commit 148eae3

Please sign in to comment.