You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running idaesx build, the following message was displayed:
[ERROR] 2023-06-02 15:52:16,608 build - During 'pre-process notebooks': Could not find notebook at: /home/ludo/lbl/idaes/examples/idaes_examples/notebooks/docs/tut/general/i_src.ipynb
The reason for this is that a non-existent docs/tut/general/index.md was specified in _toc.yml (the path should have been docs/tut/index.md)
However, somewhere in the filename processing logic, the path stem index was processed as though it contained the _doc suffix to be stripped
The _doc-to-_src logic replaces the last 4 characters regardless of whether the stem contains the suffix or not, resulting in the erroneous i_src.ipynb name being constructed
The text was updated successfully, but these errors were encountered:
* revise import errors
* move files to doc folder
* Add ipynb artifacts for tutorials
* Change tutorials position in TOC to address FileNotFound error
See #50
* Set missing generated data files to be ignored
* Try using a Markdown header to obtain a clearer sidebar entry
* Try removing ref to logo
* Add updated ipynb artifacts
---------
Co-authored-by: Ludovico Bianchi <lbianchi@lbl.gov>
Noticed while working on #40.
Running
idaesx build
, the following message was displayed:docs/tut/general/index.md
was specified in_toc.yml
(the path should have beendocs/tut/index.md
)index
was processed as though it contained the_doc
suffix to be stripped_doc
-to-_src
logic replaces the last 4 characters regardless of whether the stem contains the suffix or not, resulting in the erroneousi_src.ipynb
name being constructedThe text was updated successfully, but these errors were encountered: