posthtml-include
posthtml-include copied to clipboard
img src as local not working
Hi! I'm trying to include this HTML:
<article class="card">
<img src="{{ src }}" alt="{{ alt }}">
<div class="content">
<h2>{{ title }}</h2>
<p>{{ description }}</p>
</div>
</article>
But Parcel refuses to compile, the error is the following:
🚨 Build failed.
@parcel/core: Failed to resolve '{{ src }}' from './src/index.html'
@parcel/resolver-default: Cannot load file './{{ src }}' in './src'.
Is this achivable in some other way? Thanks