mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Move status to it’s own line
This commit is contained in:
parent
81f9e73415
commit
30140ff4d1
1 changed files with 2 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ function makeDetailsFromListing ( listing ) {
|
|||
text: isNonEmptyString,
|
||||
content: isNonEmptyString,
|
||||
description: isNonEmptyString,
|
||||
status: isNonEmptyString,
|
||||
// status: isNonEmptyString,
|
||||
aliases: isNonEmptyArray,
|
||||
tags: isNonEmptyArray,
|
||||
}
|
||||
|
|
@ -49,6 +49,7 @@ function makeDetailsFromListing ( listing ) {
|
|||
|
||||
return [
|
||||
listing.content || 'No content',
|
||||
has( listing, 'status' ) ? `status:${ listing.status }` : '',
|
||||
// Brownmatter
|
||||
matter.stringify( '', contents ),
|
||||
].join('')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue