Browse Source

🐛 Fix doctype in docs (#537)

pull/554/head
Trim21 6 years ago
committed by Sebastián Ramírez
parent
commit
4cea311e6e
  1. 4
      fastapi/openapi/docs.py

4
fastapi/openapi/docs.py

@ -17,7 +17,7 @@ def get_swagger_ui_html(
) -> HTMLResponse: ) -> HTMLResponse:
html = f""" html = f"""
<! doctype html> <!DOCTYPE html>
<html> <html>
<head> <head>
<link type="text/css" rel="stylesheet" href="{swagger_css_url}"> <link type="text/css" rel="stylesheet" href="{swagger_css_url}">
@ -104,7 +104,7 @@ def get_redoc_html(
def get_swagger_ui_oauth2_redirect_html() -> HTMLResponse: def get_swagger_ui_oauth2_redirect_html() -> HTMLResponse:
html = """ html = """
<!doctype html> <!DOCTYPE html>
<html lang="en-US"> <html lang="en-US">
<body onload="run()"> <body onload="run()">
</body> </body>

Loading…
Cancel
Save