Skip to content

Commit 22401a5

Browse files
committed
Add rudiments of docbuild using mkdocs
1 parent 0ed0d8e commit 22401a5

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.gitignore

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
# Object files
2-
*.o
3-
*.ko
1+
# mkdocs site
2+
/site
43

5-
# Libraries
6-
*.lib
7-
*.a
8-
9-
# Shared objects (inc. Windows DLLs)
10-
*.dll
11-
*.so
12-
*.so.*
13-
*.dylib
14-
15-
# Executables
16-
*.exe
17-
*.out
18-
*.app

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013 The Julia Language
3+
Copyright (c) 2013--2015 The Julia Language
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

docs/LICENSE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../LICENSE

docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../README.md

mkdocs.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
site_name: IterativeSolvers.jl
2+
3+
site_description: Iterative numerical linear algebra in Julia
4+
5+
repo_url: https://github.com/JuliaLang/IterativeSolvers.jl
6+
7+
pages:
8+
- [index.md]
9+
- [LICENSE.md, About, License]
10+
11+
theme: journal
12+
13+
markdown_extensions: [codehilite]

0 commit comments

Comments
 (0)