We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loading images in Markdown blocks is really hard currently as it seems that Markdown blocks don't have the graph's CWD.
For example, with this tree:
Using Markdown in VSCode this way works to load an image:
But when using Markdown in Pyflow, the markdown block can't find the image:
A markdown block should have its graph's CWD.
The text was updated successfully, but these errors were encountered:
In markdownblock.py, this sets a custom CWD for markdown:
self.rendered_markdown.setHtml( f"{dark_theme}{markdown(t)}", baseUrl=QUrl.fromLocalFile(cwd + os.path.sep), )
But for now I have not found an easy way to access the CWD from markdownblock.py
Sorry, something went wrong.
No branches or pull requests
Loading images in Markdown blocks is really hard currently as it seems that Markdown blocks don't have the graph's CWD.
For example, with this tree:
Using Markdown in VSCode this way works to load an image:
But when using Markdown in Pyflow, the markdown block can't find the image:
A markdown block should have its graph's CWD.
The text was updated successfully, but these errors were encountered: