mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-01-09 21:45:49 +00:00
9a8314cd41
associated material at the top level, vk.xml and associated material in xml/, and generated include and source files in include/vulkan/ and src/ext_loader/, respectively (public issue 436).
22 lines
881 B
Ruby
22 lines
881 B
Ruby
# Copyright (c) 2016-2018 The Khronos Group Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
#require 'asciidoctor/extensions' unless RUBY_ENGINE == 'opal'
|
|
RUBY_ENGINE == 'opal' ? (require 'katex_replace/extension') : (require_relative 'katex_replace/extension')
|
|
|
|
# All the inline macros we need
|
|
Asciidoctor::Extensions.register do
|
|
postprocessor ReplaceMathjaxWithKatex
|
|
end
|