How do I get the latest Swagger UI? Currently, I have a project that has the default setup using this in the index.html.liquid file. Is there any documentation on how to integrate with latest Swagger UI or is does it only support this?
<title>Swagger UI</title>
<link rel="icon" type="image/png" href="swagger/ui/images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="swagger/ui/images/favicon-16x16.png" sizes="16x16" />
<link href='swagger/ui/css/typography.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='swagger/ui/css/reset.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='swagger/ui/css/screen.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='swagger/ui/css/reset.css' media='print' rel='stylesheet' type='text/css'/>
<link href='swagger/ui/css/print.css' media='print' rel='stylesheet' type='text/css'/>
<script src='swagger/ui/lib/jquery-1.8.0.min.js' type='text/javascript'></script>
<script src='swagger/ui/lib/jquery.slideto.min.js' type='text/javascript'></script>
<script src='swagger/ui/lib/jquery.wiggle.min.js' type='text/javascript'></script>
<script src='swagger/ui/lib/jquery.ba-bbq.min.js' type='text/javascript'></script>
<script src='swagger/ui/lib/handlebars-2.0.0.js' type='text/javascript'></script>
<script src='swagger/ui/lib/underscore-min.js' type='text/javascript'></script>
<script src='swagger/ui/lib/backbone-min.js' type='text/javascript'></script>
<script src='swagger/ui/swagger-ui.min.js' type='text/javascript'></script>
<script src='swagger/ui/lib/highlight.7.3.pack.js' type='text/javascript'></script>
<script src='swagger/ui/lib/marked.js' type='text/javascript'></script>
<script src='swagger/ui/lib/swagger-oauth.js' type='text/javascript'></script>
How do I get the latest Swagger UI? Currently, I have a project that has the default setup using this in the
index.html.liquidfile. Is there any documentation on how to integrate with latest Swagger UI or is does it only support this?