NathanRoll commited on
Commit
d7f0845
·
verified ·
1 Parent(s): 6201454

Fix submit docs startup string

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1439,7 +1439,7 @@ This is the smallest legal record and a good shape for checking the schema:
1439
  - Click **Verify** before submitting; the preview is rendered from the same canonical JSON that is archived.
1440
  """
1441
 
1442
- SCHEMA_DOCS_MD = f"""### Canonical Fields
1443
 
1444
  Required top-level fields:
1445
 
@@ -1459,6 +1459,7 @@ Supported shape specs:
1459
  - `rectangle`: `width` and `height`
1460
 
1461
  The verifier rejects boundary protrusion and pair overlap above the selected tolerance.
 
1462
 
1463
  ### Four Circles In A Square
1464
 
 
1439
  - Click **Verify** before submitting; the preview is rendered from the same canonical JSON that is archived.
1440
  """
1441
 
1442
+ SCHEMA_DOCS_MD = """### Canonical Fields
1443
 
1444
  Required top-level fields:
1445
 
 
1459
  - `rectangle`: `width` and `height`
1460
 
1461
  The verifier rejects boundary protrusion and pair overlap above the selected tolerance.
1462
+ """ + f"""
1463
 
1464
  ### Four Circles In A Square
1465