mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-23 00:56:33 +03:00
b604bd8da8
* fix: exclusiveMin/Max shows incorect range * cover all number range cases & add unit tests * add more tests * fix maximum value * simplify humanizeNumberRange function * simplify exclusive checks * Update src/utils/openapi.ts Co-authored-by: Roman Hotsiy <gotsijroman@gmail.com> * update test coverage * linting * revert weird prettier changes * add md files to prettier ignore Co-authored-by: Roman Hotsiy <gotsijroman@gmail.com>
29 lines
625 B
HTML
29 lines
625 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>%PAGE_TITLE%</title>
|
|
<link rel="icon" href="%PAGE_FAVICON%" />
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
redoc {
|
|
display: block;
|
|
}
|
|
</style>
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<redoc spec-url="%SPEC_URL%" %REDOC_OPTIONS%></redoc>
|
|
<script src="redoc.standalone.js"></script>
|
|
</body>
|
|
</html>
|