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
When I have multiple directories with presentations:
── static_assets │ └── theme │ ├── base-theme.css │ ├── base-white-theme.css │ ├── logo_white.png │ ├── pitch-theme.css │ ├── softteaching-theme.css │ └── teaching-theme.css ├── talk_presentation │ └── slides │ ├── assets │ │ └──cloud.png │ └── mypresentation.md └── teaching_workshop └── slides ├── assets │ ├── baskets_datasets_baskets.png │ └── title.png └── workshop_de.md
And I reference the custom theme in the md files:
--- title: Workshop theme: theme/softteaching-theme.css customTheme: ../../theme/softteaching-theme ---
In the CI I can map my static_assets/theme folder to the teaching_workshop/slides/_assets/theme folder. No problem here with the value of theme.
static_assets/theme
teaching_workshop/slides/_assets/theme
theme
But in the VS Code Plugin, it seems to not work to reference to relative paths that point outside the slides folder at customTheme.
slides
customTheme
Is there any trick for this. Or could this be an enhancement of this plugin?
The text was updated successfully, but these errors were encountered:
I see. Actually it's not working cause the webserver is started from the markdown file. And then parents folder are not available.
The chance for this can be tricky and not really simple.
Sorry, something went wrong.
you can make relative symbolic link of static_assets is each presentation directory, that will work.
static_assets
No branches or pull requests
When I have multiple directories with presentations:
And I reference the custom theme in the md files:
In the CI I can map my
static_assets/theme
folder to theteaching_workshop/slides/_assets/theme
folder. No problem here with the value oftheme
.But in the VS Code Plugin, it seems to not work to reference to relative paths that point outside the
slides
folder atcustomTheme
.Is there any trick for this. Or could this be an enhancement of this plugin?
The text was updated successfully, but these errors were encountered: