Skip to content

Commit

Permalink
fixed crash when using <a> tags in navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
marzer committed Oct 23, 2022
1 parent ff8101a commit f2bfba2
Show file tree
Hide file tree
Showing 5 changed files with 328 additions and 270 deletions.
13 changes: 12 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
{
"python.formatting.provider": "yapf"
"prettier.useTabs": true,
"prettier.tabWidth": 4,
"editor.rulers": [120],
"editor.formatOnSave": true,
"files.eol": "\n",
"python.formatting.provider": "yapf",
"html.format.indentInnerHtml": true,
"files.exclude": {
"**/__pycache__": true,
"**/build": true,
"**/*.egg-info": true
},
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.11.1 - 2022-10-23

- fixed crash when using `<a>` tags in navbar

## v0.11.0 - 2022-10-21

- added syntax highlighting for functions
Expand Down
15 changes: 1 addition & 14 deletions poxy.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,6 @@
}
],
"settings": {
"files.exclude": {
"**/__pycache__": true,
"**/build": true,
"**/*.egg-info": true,
"**/poxy/html": true
},
"prettier.tabWidth": 4,
"html.format.indentInnerHtml": true,
"prettier.useTabs": true,
"files.associations": {
"type_traits": "cpp",
"concepts": "cpp",
Expand All @@ -23,10 +14,6 @@
"initializer_list": "cpp",
"xstddef": "cpp",
"xtr1common": "cpp"
},
"editor.rulers": [
120
],
"editor.formatOnSave": true
}
}
}
2 changes: 1 addition & 1 deletion poxy/data/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.11.1
Loading

0 comments on commit f2bfba2

Please sign in to comment.