Fix #24
This commit is contained in:
parent
dedf4fb837
commit
61aedd8da8
@ -5,4 +5,4 @@ This is the code for [Markdown Live Preview](https://markdownlivepreview.com/).
|
||||
|
||||
|
||||
## License
|
||||
See the [LICENSE](https://github.com/tanabe/markdown-live-preview/blob/master/LICENSE) file in this repo.
|
||||
See the [LICENSE](https://github.com/tanabe/markdown-live-preview/blob/master/LICENSE) file in this repo.
|
||||
|
@ -1,6 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
SCRIPT_DIR=$(cd $(dirname $0); pwd)
|
||||
pushd ./public
|
||||
python -m http.server 8000
|
||||
popd
|
@ -81,6 +81,10 @@ img {
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
#preview.column {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
#footer {
|
||||
padding: 5px;
|
||||
z-index: 1001;
|
||||
@ -118,4 +122,4 @@ img {
|
||||
#footer #copyright a:hover {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
8
scripts/deploy.sh
Executable file
8
scripts/deploy.sh
Executable file
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
SCRIPT_DIR=$(cd $(dirname $0); pwd)
|
||||
|
||||
cd ${SCRIPT_DIR}/..
|
||||
|
||||
firebase deploy
|
7
scripts/run-local-server.sh
Executable file
7
scripts/run-local-server.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
SCRIPT_DIR=$(cd $(dirname $0); pwd)
|
||||
|
||||
cd ${SCRIPT_DIR}/../public
|
||||
python -m http.server 8000
|
Loading…
Reference in New Issue
Block a user