Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
abstract-numbering
Advanced tools
Validate abstract numberings of hierarchical document parts.
Abstract numberings express how hierarchical document parts like
outline sections, headings, or list items should be numbered, without
rendering those numberings in any particular way. Other modules in
the *-numbering
family
convert abstract numberings to strings in particular styles, like
"1.2"
or "1(a)(v)"
.
Each abstract numbering is an array of numbering components, describing first the top-most "parent" of the relevant document part and continuing down to the document part to be numbered itself.
Here is an example of a numbering for the first of two elements at the very top level of a document:
var schema = require('abstract-numbering')
var tv4 = require('tv4')
var assert = require('assert')
assert(
tv4.validate(
[ { // More on series later.
series: { number: 1, of: 1 },
// "Element number 1 of 2"
element: { number: 1, of: 2 } } ],
schema))
Note that positions begin with one, not zero:
assert(
!tv4.validate(
[ { series: { number: 1, of: 1 },
element: { number: 0, of: 1 } } ],
schema))
Series are used to describe situations when numbering restarts in the middle of a document part. Consider the following structure:
Heading 1. First Major Heading
1. Apples
2. Oranges
3. Grapes
1. Lions
2. Tigers
3. Bears
Heading 2. Second Major Heading
The abstract numbering for the "Tigers" list item would be:
assert(
tv4.validate(
[ // The component for "First Major Heading"
{ // Numbering of headings does not restart, so there is one series.
series: { number: 1, of: 1 },
element: { number: 1, of: 2 } },
// The component for "Tigers"
{ // There are two series here, the first for fruit and animals.
// "Tigers" is in the second series.
series: { number: 2, of: 2 },
// There are three total elements, of which "Tigers" is second.
element: { number: 2, of: 3 } } ],
schema))
FAQs
JSON schema for abstract numberings of hierarchical document parts
The npm package abstract-numbering receives a total of 8 weekly downloads. As such, abstract-numbering popularity was classified as not popular.
We found that abstract-numbering 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.