Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mkdocs-material
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Janne Mareike Koschinski
mkdocs-material
Commits
344ce1f4
Commit
344ce1f4
authored
8 years ago
by
squidfunk
Browse files
Options
Downloads
Patches
Plain Diff
Make theme installable
parent
9e6d347d
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
MANIFEST.in
+2
-1
2 additions, 1 deletion
MANIFEST.in
lib/tasks/views/build.js
+1
-1
1 addition, 1 deletion
lib/tasks/views/build.js
material/__init__.py
+0
-0
0 additions, 0 deletions
material/__init__.py
setup.py
+10
-10
10 additions, 10 deletions
setup.py
src/__init__.py
+0
-0
0 additions, 0 deletions
src/__init__.py
with
13 additions
and
12 deletions
MANIFEST.in
+
2
−
1
View file @
344ce1f4
...
...
@@ -2,3 +2,4 @@ recursive-include material *.ico *.js *.css *.html *.svg
recursive-exclude site *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
include LICENSE
This diff is collapsed.
Click to expand it.
lib/tasks/views/build.js
+
1
−
1
View file @
344ce1f4
...
...
@@ -35,7 +35,7 @@ import version from "gulp-rev-replace"
export
default
(
gulp
,
config
,
args
)
=>
{
return
()
=>
{
const
metadata
=
require
(
path
.
join
(
process
.
cwd
(),
"
./package.json
"
))
return
gulp
.
src
(
`
${
config
.
views
.
src
}
/**/*.html`
)
return
gulp
.
src
(
`
${
config
.
views
.
src
}
/**/*.
{
html
,py}
`
)
.
pipe
(
changed
(
config
.
views
.
build
))
.
pipe
(
minhtml
({
...
...
This diff is collapsed.
Click to expand it.
material/__init__.py
0 → 100644
+
0
−
0
View file @
344ce1f4
This diff is collapsed.
Click to expand it.
setup.py
+
10
−
10
View file @
344ce1f4
...
...
@@ -22,19 +22,19 @@ from setuptools import setup, find_packages
# Package description
setup
(
name
=
'
mkdocs-material
'
,
version
=
'
1.0.0
'
,
url
=
'
http://squidfunk.github.io/mkdocs-material/
'
,
license
=
'
MIT
'
,
description
=
'
A material design theme for MkDocs
'
,
author
=
'
Martin Donath
'
,
author_email
=
'
martin.donath@squidfunk.com
'
,
keywords
=
[
'
mkdocs
'
,
'
documentation
'
,
'
theme
'
],
name
=
"
mkdocs-material
"
,
version
=
"
1.0.0
"
,
url
=
"
http://squidfunk.github.io/mkdocs-material/
"
,
license
=
"
MIT
"
,
description
=
"
A material design theme for MkDocs
"
,
author
=
"
Martin Donath
"
,
author_email
=
"
martin.donath@squidfunk.com
"
,
keywords
=
[
"
mkdocs
"
,
"
documentation
"
,
"
theme
"
],
packages
=
find_packages
(),
include_package_data
=
True
,
entry_points
=
{
'
mkdocs.themes
'
:
[
'
material = material
'
,
"
mkdocs.themes
"
:
[
"
material = material
"
,
]
},
zip_safe
=
False
...
...
This diff is collapsed.
Click to expand it.
src/__init__.py
0 → 100644
+
0
−
0
View file @
344ce1f4
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment