1
0
mirror of https://github.com/bitwarden/help synced 2025-12-06 00:03:30 +00:00

hosting category and refactored category usage

This commit is contained in:
Kyle Spearrin
2017-08-24 13:21:41 -04:00
parent 79e00d31c4
commit 8e5091bde2
46 changed files with 79 additions and 48 deletions

9
_plugins/filename.rb Normal file
View File

@@ -0,0 +1,9 @@
module FileName
def filename(path)
extn = File.extname path
name = File.basename path, extn
"#{name}"
end
end
Liquid::Template.register_filter(FileName)