Update to handle multiple level statuses.
This commit is contained in:
parent
bdb7f0e0aa
commit
77a13bbd46
@ -1,39 +1,43 @@
|
|||||||
//-
|
//-
|
||||||
DS2 core (c) 2024 Alexander McIlwraith
|
DS2 core (c) 2024 Alexander McIlwraith
|
||||||
Core licensed under CC BY-SA 4.0
|
Core licensed under CC BY-SA 4.0
|
||||||
|
|
||||||
include ../_config
|
include ../_config
|
||||||
block config
|
block config
|
||||||
|
|
||||||
mixin h(h)
|
mixin h(h)
|
||||||
if headings[h]
|
if headings[h]
|
||||||
h2= headings[h]
|
if headings[h].indexOf("|") == -1
|
||||||
|
h2= headings[h]
|
||||||
- const getDate = function(){
|
else
|
||||||
- var d = new Date();
|
- var cntnt = headings[h].split("|")
|
||||||
- return d.toLocaleDateString(lang, {day: "numeric", month: "long", year: "numeric"});
|
| <#{cntnt[0]}>#{cntnt[1]}</#{cntnt[0]}>
|
||||||
- }
|
|
||||||
- String.prototype.toTitleCase = function() {
|
- const getDate = function(){
|
||||||
- return this.replace(/\w\S*/g, function(txt) {
|
- var d = new Date();
|
||||||
- return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
|
- return d.toLocaleDateString(lang, {day: "numeric", month: "long", year: "numeric"});
|
||||||
- });
|
- }
|
||||||
- }
|
- String.prototype.toTitleCase = function() {
|
||||||
- String.prototype.toSentenceCase = function() {
|
- return this.replace(/\w\S*/g, function(txt) {
|
||||||
- return this.charAt(0).toUpperCase() + this.substr(1).toLowerCase();
|
- return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
|
||||||
- }
|
- });
|
||||||
- String.prototype.toContent = function() {
|
- }
|
||||||
- return this.replace(/-/g, " ");
|
- String.prototype.toSentenceCase = function() {
|
||||||
- }
|
- return this.charAt(0).toUpperCase() + this.substr(1).toLowerCase();
|
||||||
- String.prototype.toPath = function() {
|
- }
|
||||||
- return this.trim().replace(/ /g, "_").replace(/-/g, "_").replace(/[\/\W]/g, "").replace(/_/g, "-");
|
- String.prototype.toContent = function() {
|
||||||
- }
|
- return this.replace(/-/g, " ");
|
||||||
|
- }
|
||||||
|
- String.prototype.toPath = function() {
|
||||||
html
|
- return this.trim().replace(/ /g, "_").replace(/-/g, "_").replace(/[\/\W]/g, "").replace(/_/g, "-");
|
||||||
head
|
- }
|
||||||
|
|
||||||
title Pattern
|
|
||||||
|
html
|
||||||
body(data-assetpath= assetpath data-prismjs-copy-timeout="1500")
|
head
|
||||||
|
|
||||||
|
title Pattern
|
||||||
|
|
||||||
|
body(data-assetpath= assetpath data-prismjs-copy-timeout="1500")
|
||||||
|
|
||||||
block content
|
block content
|
Loading…
Reference in New Issue
Block a user