Skip to content

Commit 836fcf3

Browse files
committed
up
1 parent 9271b80 commit 836fcf3

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,6 @@ distributed under the License is distributed on an "AS IS" BASIS,
141141
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
142142

143143

144-
### Projects related to Markdown and MkDocs by Adam Twardoch:
145-
146144
### Projects related to Markdown and MkDocs by Adam Twardoch:
147145

148146
* [https://twardoch.github.io/markdown-rundown/](https://twardoch.github.io/markdown-rundown/) — summary of Markdown formatting styles [git](https://github.com/twardoch/markdown-rundown)

install-macos.command

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env bash
2+
3+
dir=${0%/*}
4+
if [ "$dir" = "$0" ]; then
5+
dir="."
6+
fi
7+
cd "$dir"
8+
9+
# Install me
10+
pip install --user --upgrade -r py-requirements.txt
11+
pip install --user --upgrade .
12+
echo "# Done!"

py-requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Markdown>=2.6.7
2+
mkdocs>=0.16.1
3+
markdown-include>=0.5.1

0 commit comments

Comments
 (0)