aboutsummaryrefslogtreecommitdiff
path: root/element_include.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2024-10-13 23:50:54 +0700
committerShulhan <ms@kilabit.info>2024-10-13 23:50:54 +0700
commit37563af4c7e82fab352f4ab9137f808058e483e2 (patch)
treee1758abaf802d1e94aad393e71c9b0b5fd0ede37 /element_include.go
parent013bf4d56baf977244c670a77048ca6d946c1f56 (diff)
downloadasciidoctor-go-37563af4c7e82fab352f4ab9137f808058e483e2.tar.xz
all: fix reading include file when parent path is absolute
Previously, if the parent document is opened using absolute path and it contains include directive, the included file will fail to read because the parent path is joined with current working directory.
Diffstat (limited to 'element_include.go')
-rw-r--r--element_include.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/element_include.go b/element_include.go
index fc45b34..4b36314 100644
--- a/element_include.go
+++ b/element_include.go
@@ -44,7 +44,7 @@ func parseInclude(doc *Document, line []byte) (el *elementInclude) {
el.attrs.parseElementAttribute(line[start : start+end+1])
path = applySubstitutions(doc, path)
- el.fpath = filepath.Join(filepath.Dir(doc.fpath), string(path))
+ el.fpath = filepath.Join(filepath.Dir(doc.file), string(path))
el.content, err = os.ReadFile(el.fpath)
if err != nil {