0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-29 00:22:47 +00:00

Add snippet for removing drop cap (aka fancy first letter).

This commit is contained in:
G.Ambatte
2021-03-19 17:28:49 +13:00
parent dd35f101fe
commit 8f08591ab9
2 changed files with 18 additions and 2 deletions

View File

@@ -77,6 +77,15 @@ module.exports = [
icon : 'fas fa-book',
gen : TableOfContentsGen
},
{
name : 'Remove Drop Cap',
icon : 'fas fa-remove-format',
gen : '<style>\n' +
' .phb h1+p:first-letter {\n' +
' all: unset;\n' +
' }\n' +
'</style>'
},
]
},

View File

@@ -77,8 +77,15 @@ module.exports = [
icon : 'fas fa-book',
gen : TableOfContentsGen
},
{
name : 'Remove Drop Cap',
icon : 'fas fa-remove-format',
gen : '<style>\n' +
' .phb h1+p:first-letter {\n' +
' all: unset;\n' +
' }\n' +
'</style>'
},
]
},