Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
img-svg-inline-loader
Advanced tools
Webpack loader used for inline replacement of SVG reference in src attribute of img tags with actual content of SVG file.
Webpack loader used for inline replacement of SVG reference in src attribute of img tags with actual content of SVG file.
Loader has built-in SVGO support for SVG optimization.
npm install img-svg-inline-loader --save-dev
In webpack config:
{
test: /\.html$/,
use: [
{
loader: "img-svg-inline-loader",
options: { /* ... */ }
},
// ...
]
}
In code:
<img svg-inline class="icon" src="./images/fa/user.svg" alt="fa-user" />
Which replaces into:
<svg svg-inline class="icon" alt="fa-user" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 0c88.366 0 160 71.634 160 160s-71.634 160-160 160S96 248.366 96 160 167.634 0 256 0zm183.283 333.821l-71.313-17.828c-74.923 53.89-165.738 41.864-223.94 0l-71.313 17.828C29.981 344.505 0 382.903 0 426.955V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48v-37.045c0-44.052-29.981-82.45-72.717-93.134z"/></svg>
Default options:
{
keyword: "svg-inline",
strict: true,
xhtml: false,
svgo: {
plugins: [
{
cleanupAttrs: true
},
// ...
]
}
}
Explanation:
keyword
Defines keyword, which marks img tags you want to inline replace with SVG. Keyword has to be wrapped with whitespace characters (e.g. space).
In case of some conflicts, you can also use data version of your keyword (e.g. data-keyword
).
strict
In strict mode loader replaces only img tags with defined keyword. If strict mode is disabled, loader replaces all img tags.
xhtml
In XHTML mode attribute minimization is forbidden. Empty attributes are filled with their names to be XHTML-compliant (e.g. disabled="disabled"
).
svgo
SVGO documentation can be found here. If you do not want use SVGO, set it to null
.
Notes: User-defined options are not deep-merged with default options.
FAQs
[DEPRECATED] Webpack loader used for inline replacement of SVG reference in src attribute of img tags with actual content of SVG file.
The npm package img-svg-inline-loader receives a total of 0 weekly downloads. As such, img-svg-inline-loader popularity was classified as not popular.
We found that img-svg-inline-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.