1
0
mirror of https://github.com/lise-henry/crowbook synced 2024-09-28 11:19:51 +02:00

updated changelog

This commit is contained in:
Elisabeth Henry 2016-02-22 18:54:49 +01:00
parent 4a0c27b418
commit f5bf5cfd02
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,13 @@
ChangeLog
=========
0.2.0 (unreleased)
------------------
* Tables and Footnotes are now implemented for the parser, though not
for HTML/Odt rendering.
* `crowbook` now have a `--set` option, allowing to define or override
whatever option set in a book configuration.
0.1.0 (2016-02-21)
------------------
* initial release

View File

@ -54,7 +54,7 @@ impl Parser {
let reference = if let Token::Str(ref text) = content[0] {
text.clone()
} else {
panic!("Oups");
panic!("Reference is not a vector of a single Token::Str");
};
if let Some(in_vec) = self.footnotes.get(&reference) {
*content = in_vec.clone();