2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-06-14 19:15:28 +00:00
Files
.github
_data
_drafts
_includes
_layouts
_news
_plugins
LICENSE
author_permalink.rb
hook-add-last-modified-date.rb
humanize.rb
_posts
_publishers
_repo
about
alternatives
assets
extend
use
.gitignore
404.md
CNAME
Gemfile
Gemfile.lock
LICENSE
README.md
_config.yml
blog.html
categories.html
contribute.md
demo.md
deploy.md
digitalocean.md
functions.md
index.md
news.html
newsletter.md
package-lock.json
package.json
plugins.html
postcss.config.js
publishers.html
support.md
tags.html
tailwind.config.js
inventree-website/_plugins/author_permalink.rb
Matthias Mair ddeed15ed5 fix pattern
2023-01-28 00:36:51 +01:00

9 lines
146 B
Ruby

module Jekyll
module Drops
class UrlDrop < Drop
def doc_author
@obj.data['author']
end
end
end
end