summaryrefslogtreecommitdiff
path: root/src/metadata.rs
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers+gitlab@digital-scurf.org>2022-10-22 08:59:48 +0000
committerDaniel Silverstone <dsilvers+gitlab@digital-scurf.org>2022-10-22 08:59:48 +0000
commit81e985cc026d67e3d506d485b3bf013bfd82987e (patch)
tree13cbc60820d24ec6f797d839f3e40ea92d67ed91 /src/metadata.rs
parent18dedca71451dab31f43a0725277308471d32dfe (diff)
parentfd854872ce86f9ae5d07ec59e598fe85a8607d5c (diff)
downloadsubplot-81e985cc026d67e3d506d485b3bf013bfd82987e.tar.gz
Merge branch 'liw/relative' into 'main'
fix running docgen on a subplot in a different directory See merge request subplot/subplot!293
Diffstat (limited to 'src/metadata.rs')
-rw-r--r--src/metadata.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/metadata.rs b/src/metadata.rs
index dee0b50..261017a 100644
--- a/src/metadata.rs
+++ b/src/metadata.rs
@@ -12,6 +12,7 @@ use log::trace;
/// Metadata of a document, as needed by Subplot.
#[derive(Debug)]
pub struct Metadata {
+ basedir: PathBuf,
title: String,
date: Option<String>,
markdown_filename: PathBuf,
@@ -74,6 +75,7 @@ impl Metadata {
trace!("Loaded all metadata successfully");
Ok(Metadata {
+ basedir: basedir.as_ref().to_path_buf(),
title,
date,
markdown_filename: meta.markdown().into(),
@@ -95,6 +97,11 @@ impl Metadata {
self.date.as_deref()
}
+ /// Return base dir for all relative filenames.
+ pub fn basedir(&self) -> &Path {
+ &self.basedir
+ }
+
/// Return filename of the markdown file.
pub fn markdown_filename(&self) -> &Path {
&self.markdown_filename