mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
13 lines
201 B
Ruby
13 lines
201 B
Ruby
require_relative 'util.rb'
|
|
|
|
module Jekyll
|
|
class ConfigGenerator < Generator
|
|
safe true
|
|
priority :highest
|
|
|
|
def generate(site)
|
|
site.config['docs_url'] = get_docs_url
|
|
end
|
|
end
|
|
end
|