Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@igor.dvlpr/rawelement
Advanced tools
๐ฏ A utility that lets you manipulate HTML elements, their attributes and innerHTML as strings, on the go and then render the modified HTML. Very useful in SSG projects. ๐ค
๐ Support further development
I work hard for every project, including this one
and your support means a lot to me!
Consider buying me a coffee. โ
Thank you for supporting my efforts! ๐๐
@igorskyflyer
Install it by executing:
npm i "@igor.dvlpr/rawelement"
RawElement(options: IRawElementOptions)
Creates a RawElement
instance.
If no options are specified or the required data
property is not passed, it will throw an error.
IRawElementOptions
Options are an interface IRawElementOptions
of the following structure:
interface IRawElementOptions {
data: string
tag?: keyof HTMLElementTagNameMap // = string
format?: boolean
}
data: string
Required
, the actual HTML element/data to process, as a String
.
Data will be normalized, i.e. CRLF (\r\n
) replaced with LF (\n
).
tag?: string
Optional
, a wrapper HTML tag for the element that will contain the text content and optional attributes set by the setAttribute()
method.
The provided HTML element MUST have a matching start and an end tag that correspond to the value of the tag
property, otherwise an error is thrown.
[!NOTE]
setAttribute
only works when thetag
property is defined.
format?: boolean
Optional
, indicates whether to format the text content inside of the element.
[!TIP] It is highly recommended to leave the property
format
to its default value oftrue
otherwise thesource
property of an instance ofRawElement
might contain a lot of leading whitespace.
wrapper
Gets the whole wrapper element made of:
source
Gets the text content of the element.
[!TIP] The text content can be formatted (the default behavior), set
format
in theoptions
to false to disable formatting.
hasAttribute(name: string): boolean
Checks whether the wrapper element has an attribute.
[!CAUTION] If the wrapper element is not set, i.e.
tag
is not defined, attributes cannot be used and this method will throw an Error.
Returns a Boolean
indicating whether the provided attribute exists.
setAttribute(name: string, value: string | null): boolean
Sets an attribute and its value on the wrapper element.
[!CAUTION] If the wrapper element is not set, i.e.
tag
is not defined, attributes cannot be used and this method will throw an Error.
Passing the value
of null
removes the attribute (see removeAttribute
) as well.
Returns a Boolean
indicating whether the action succeeded.
removeAttribute(name: string): boolean
Removes an attribute and its value from the wrapper element.
[!CAUTION] If the wrapper element is not set, i.e.
tag
is not defined, attributes cannot be used and this method will throw an Error.
Returns a Boolean
with the value of:
true
- if the attribute was found and removed,false
- if the attribute does not exist or there was an error in removing it.EncodedComponent.astro
---
import { Encoder } from '@igor.dvlpr/encode-entities'
import { RawElement } from '@igor.dvlpr/rawelement'
// here we are using Astro (the SSG)
// but the data can come from any source
const slot: string = await Astro.slots.render('default')
const element: RawElement = new RawElement({
tag: 'div',
data: slot
})
const encoder: Encoder = new Encoder()
const source: string = encoder.encode(element.source) // this component will always output encoded content
---
<Fragment set:html={source} />
my-page.astro
import EncodedComponent from './EncodedComponent.astro'
<EncodedComponent>
<div is:raw>
Mitochondria are known as the "powerhouses" of the cell because they generate most of the cell's supply of ATP & CO<sub>2</sub>, which is used as a source of chemical energy.
</div>
</EncodedComponent>
{/*
Will get rendered as:
Mitochondria are known as the "powerhouses" of the cell because they generate most of the cell's supply of ATP & CO<sub>2</sub>, which is used as a source of chemical energy.
*/}
๐ The changelog is available here: CHANGELOG.md.
Licensed under the MIT license which is available here, MIT license.
@igor.dvlpr/astro-post-excerpt
โญ An Astro component that renders post excerpts for your Astro blog - directly from your Markdown and MDX files. Astro v2+ collections are supported as well! ๐
๐ฆ ExtendableString allows you to create strings on steroids that have custom transformations applied to them, unlike common, plain strings. ๐ช
โ DรบรถScrรญbรฎ allows you to convert letters with diacritics to regular letters. ๐ค
@igor.dvlpr/magic-queryselector
๐ช A TypeScript-types patch for querySelector/querySelectorAll, make them return types you expect them to! ๐ฎ
โธ Strips Markdown headings!๐น
Created by Igor Dimitrijeviฤ (@igorskyflyer).
v1.1.0
<p align="right"><em>26-Jul-2024</em></p>tag
property optionalhasAttribute
method for checking whether an attribute existsremoveAttribute
method for attribute removalFAQs
๐ฏ A utility that lets you manipulate HTML elements, their attributes and innerHTML as strings, on the go and then render the modified HTML. Very useful in SSG projects. ๐ค
The npm package @igor.dvlpr/rawelement receives a total of 6 weekly downloads. As such, @igor.dvlpr/rawelement popularity was classified as not popular.
We found that @igor.dvlpr/rawelement demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 0 open source maintainers 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.