Skip to content

Commit 4aa67d1

Browse files
authored
Merge pull request #914 from stevapple/no-hash
fix(web): remove hash routes in documentation
2 parents 8895096 + 8609139 commit 4aa67d1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ docatl push docs.zip awesome-project 1.0.0 --host http://localhost:8000
4848

4949
Any file type can be uploaded. To view an uploaded pdf, specify it's full path:
5050

51-
`http://localhost:8000/#/awesome-project/1.0.0/my_awesome.pdf`
51+
`http://localhost:8000/awesome-project/1.0.0/my_awesome.pdf`
5252

5353
You can also manually upload your documentation.
54-
A very simple web form can be found under [upload](#/upload).
54+
A very simple web form can be found under [upload](/upload).
5555

5656
#### Tag documentation
5757

web/src/pages/Home.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export default function Home(): JSX.Element {
9999
<Tooltip title="Upload Documentation" placement="right" arrow>
100100
<IconButton
101101
sx={{ marginLeft: 2, height: '46px', width: '46px', marginTop: '2px'}}
102-
href="/#/upload"
102+
href="/upload"
103103
>
104104
<FileUpload></FileUpload>
105105
</IconButton>
@@ -108,7 +108,7 @@ export default function Home(): JSX.Element {
108108
<Tooltip title="Claim a Project" placement="right" arrow>
109109
<IconButton
110110
sx={{ marginLeft: 2, height: '46px', width: '46px', marginTop: '2px'}}
111-
href="/#/claim"
111+
href="/claim"
112112
>
113113
<Lock></Lock>
114114
</IconButton>
@@ -117,7 +117,7 @@ export default function Home(): JSX.Element {
117117
<Tooltip title="Delete a project version" placement="right" arrow>
118118
<IconButton
119119
sx={{ marginLeft: 2, height: '46px', width: '46px', marginTop: '2px'}}
120-
href="/#/delete"
120+
href="/delete"
121121
>
122122
<Delete></Delete>
123123
</IconButton>

0 commit comments

Comments
 (0)