
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@itrulia/fractal-variant-readme
Advanced tools
Fractal plugin that allows you to create readmes for your variants.
Fractal plugin that allows you to create readmes for your variants.
This Fractal plugin allows you to create your own readme.md
files powered by marked for variants and display them in your design system.
Please note that this plugin only works for fractal v2!
To install it you need to require it like this:
npm install --save @itrulia/fractal-variant-readme
This will add the @itrulia/fractal-variant-readme dependency in to your package.json.
Now you can add it to your fractal.config.js
like this:
app: {
...
plugins: [
["@itrulia/fractal-variant-readme", {
gfm: true,
// or more marked options
}]
]
},
In your component directory you can now create new readme files with the following syntax: readme--VARIANT_ID.md
. e.g.: readme--primary.md
.
In your _component.njk
you can now have access to variant.readme
like this:
{% if variant.readme %}
<h3 class="variant__sectionTitle">
Description
</h3>
<div class="variant__readme">
{{ variant.readme | safe }}
</div>
{% endif %}
inside the variants loop.
Here's a brief intro about what a developer must do in order to start developing the project further:
git clone https://github.com/Itrulia/fractal-variant-readme
cd fractal-variant-readme/
npm install
This will download all dependencies so that you are ready to go.
You will need to publish this to the github and npm repository.
To do this you will need to do the following steps:
v
prefix (e.g. v1.1.0
) and add release notes for what has changed so everyone knows what to do when there are breaking changes and what has changed for them.npm publish
. Further information can be founde on the official npm documentation page.What's all the bells and whistles this project can perform?
The plugin passes all options through, please see the options available for marked
: https://github.com/markedjs/marked#options-1
When you publish something open source, one of the greatest motivations is that anyone can just jump in and start contributing to your project.
To make it easier for everyone to contribute to this project and understand it, please always update the documentation when you create or modify anything.
Also always try to improve atleast 1 small thing when you are already there so that over time the project gets better and better, this is also known as The Boy Scout Rule.
Copyright (c) 2018 Karl Merkli
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Fractal plugin that allows you to create readmes for your variants.
We found that @itrulia/fractal-variant-readme 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.