jekyll-spaceship/lib/jekyll-spaceship.rb

14 lines
348 B
Ruby

# frozen_string_literal: true
require 'jekyll-spaceship/cores/logger'
require 'jekyll-spaceship/cores/processor'
require 'jekyll-spaceship/cores/register'
module Jekyll::Spaceship
Logger.display_info
Register.use 'table-processor'
Register.use 'mathjax-processor'
Register.use 'plantuml-processor'
Register.use 'polyfill-processor'
end