Skip to content

Commit 148eae3

Browse files
committed
Updated default options
1 parent cd1bb1f commit 148eae3

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

DEVELOP.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,10 @@
3737
- [x] Table of contents without page numbers
3838
- [x] Bibliography
3939

40-
### Known issues
41-
42-
- [x] `nmd dossier add` transform relative paths to absolute paths
43-
- [x] `nmd dossier add` save only 2 paths
44-
- [x] Chapter body are not parsed on Windows
45-
- [ ] `* words *` works
46-
- [x] Table footer doesn't use `tfoot` in HTML format (caused by `build_html` crate)
47-
4840
### Planned Features
4941

5042
- [ ] All modifiers
43+
- [ ] `* words *`
5144
- [x] Use `getset` crate
5245
- [ ] embed_remote_image
5346
- [ ] Possibility to use a different dossier configuration name

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ NMD stands for **New MarkDown**, or for friends, *Nicola MarkDown* (if Stephen B
2929
- [HTML](#html)
3030
- [Develop](#develop)
3131
- [NMD Syntax](#nmd-syntax)
32+
- [Known issues](#known-issues)
3233
- [Author](#author)
3334
- [Contributing](#contributing)
3435
- [License](#license)
@@ -176,6 +177,11 @@ Develop [check list](DEVELOP.md)
176177
> [!WARNING]
177178
> NMD syntax is working in progress yet, you can contribute following [contribution guidelines](CONTRIBUTING.md)!
178179
180+
181+
### Known issues
182+
183+
Embed SVG images is not support.
184+
179185
## Author
180186

181187
Nicola Ricciardi

src/compiler/dossier/dossier_configuration/dossier_configuration_compilation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ pub struct DossierConfigurationCompilation {
4646
impl Default for DossierConfigurationCompilation {
4747
fn default() -> Self {
4848
Self {
49-
embed_local_image: true,
50-
embed_remote_image: true,
49+
embed_local_image: false,
50+
embed_remote_image: false,
5151
compress_embed_image: false,
5252
strict_image_src_check: true,
5353
parallelization: true,

src/compiler/dossier/dossier_configuration/dossier_configuration_table_of_contents.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ impl Default for DossierConfigurationTableOfContents {
2525
fn default() -> Self {
2626
Self {
2727
title: String::from("Table of contents"),
28-
include_in_output: false,
28+
include_in_output: true,
2929
page_numbers: false,
3030
plain: false,
3131
maximum_heading_level: 4

0 commit comments

Comments
 (0)