decimal-numbering
Advanced tools
Comparing version 3.0.2 to 4.0.0
@@ -5,3 +5,3 @@ var alpha = require('lower-alpha') | ||
return ( | ||
(shortForm ? '' : 'Section ') + | ||
(shortForm ? '' : 'Section\u00a0') + | ||
numbering | ||
@@ -8,0 +8,0 @@ .map(function (component) { |
{ | ||
"name": "decimal-numbering", | ||
"description": "number hierarchical document parts like \"Section 1.5.3\"", | ||
"version": "3.0.2", | ||
"version": "4.0.0", | ||
"author": "Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com)", | ||
@@ -12,3 +12,3 @@ "dependencies": { | ||
"replace-require-self": "^1.0.0", | ||
"standard": "^12.0.1", | ||
"standard": "^13.0.2", | ||
"standard-markdown": "^5.0.1" | ||
@@ -15,0 +15,0 @@ }, |
# decimal-numbering | ||
number hierarchical document parts like \"Section 1.5.3\" | ||
number hierarchical document parts like "Section 1.5.3" | ||
@@ -18,3 +18,3 @@ decimal-numbering is part of the [abstract-numbering](https://www.npmjs.com/search?q=keywords:abstract-numbering) family of packages. | ||
]), | ||
'Section A-1' | ||
'Section\u00a0A-1' | ||
) | ||
@@ -29,3 +29,3 @@ | ||
]), | ||
'Section AB-1' | ||
'Section\u00a0AB-1' | ||
) | ||
@@ -52,3 +52,3 @@ | ||
]), | ||
'Section 1.1.1.1' | ||
'Section\u00a01.1.1.1' | ||
) | ||
@@ -55,0 +55,0 @@ |
4313