mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-20 19:12:24 +00:00
Add general redirect capability and test case (#9750)
This commit is contained in:
parent
e341491f2d
commit
6e7c43767e
4 changed files with 9 additions and 5 deletions
1
Gemfile
1
Gemfile
|
|
@ -15,6 +15,7 @@ gem "just-the-docs"
|
|||
gem "jekyll-toc"
|
||||
gem 'rake'
|
||||
gem 'html-proofer'
|
||||
gem 'jekyll-redirect-from'
|
||||
|
||||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
||||
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@ GEM
|
|||
concurrent-ruby (1.1.9)
|
||||
dnsruby (1.61.7)
|
||||
simpleidn (~> 0.1)
|
||||
em-websocket (0.5.2)
|
||||
em-websocket (0.5.3)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0.6.0)
|
||||
http_parser.rb (~> 0)
|
||||
ethon (0.15.0)
|
||||
ffi (>= 1.15.0)
|
||||
eventmachine (1.2.7)
|
||||
|
|
@ -109,7 +109,7 @@ GEM
|
|||
rainbow (~> 3.0)
|
||||
typhoeus (~> 1.3)
|
||||
yell (~> 2.0)
|
||||
http_parser.rb (0.6.0)
|
||||
http_parser.rb (0.8.0)
|
||||
i18n (0.9.5)
|
||||
concurrent-ruby (~> 1.0)
|
||||
jekyll (3.9.0)
|
||||
|
|
@ -297,6 +297,7 @@ DEPENDENCIES
|
|||
github-pages (~> 207)
|
||||
html-proofer
|
||||
jekyll-feed (~> 0.6)
|
||||
jekyll-redirect-from
|
||||
jekyll-toc
|
||||
just-the-docs
|
||||
kramdown-parser-gfm
|
||||
|
|
|
|||
|
|
@ -7,13 +7,13 @@ search.heading_level: 2
|
|||
search.button: true
|
||||
plugins:
|
||||
- jekyll-toc
|
||||
- jekyll-redirect-from
|
||||
kramdown:
|
||||
parse_block_html: true
|
||||
toc_levels: "1,2,3"
|
||||
logo: "/images/ONNX-Runtime-logo.svg"
|
||||
aux_links:
|
||||
|
||||
"Onnx Runtime":
|
||||
"ONNX Runtime":
|
||||
- "/"
|
||||
"Install":
|
||||
- "/docs/install/"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
---
|
||||
title: C# API
|
||||
description: Overview of the C# API
|
||||
nav_exclude: true
|
||||
redirect_from: /docs/reference/api/csharp-api
|
||||
---
|
||||
|
||||
# C# API Reference
|
||||
|
|
|
|||
Loading…
Reference in a new issue