-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
also: - made it installable!
- Loading branch information
Showing
39 changed files
with
182 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "external/mcss"] | ||
path = external/mcss | ||
[submodule "poxy/data/mcss"] | ||
path = poxy/data/mcss | ||
url = https://github.com/marzer/m.css.git |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# poxy | ||
Documentation generator for C++ based on Doxygen and [mosra/m.css](https://mcss.mosra.cz/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
#!/usr/bin/env python3 | ||
# This file is a part of marzer/dox and is subject to the the terms of the MIT license. | ||
# This file is a part of marzer/poxy and is subject to the the terms of the MIT license. | ||
# Copyright (c) Mark Gillard <mark.gillard@outlook.com.au> | ||
# See https://github.com/marzer/dox/blob/master/LICENSE for the full license text. | ||
# See https://github.com/marzer/poxy/blob/master/LICENSE for the full license text. | ||
# SPDX-License-Identifier: MIT | ||
|
||
from dox import main | ||
from poxy import main | ||
|
||
main() | ||
if __name__ == '__main__': | ||
main() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env python3 | ||
# This file is a part of marzer/poxy and is subject to the the terms of the MIT license. | ||
# Copyright (c) Mark Gillard <mark.gillard@outlook.com.au> | ||
# See https://github.com/marzer/poxy/blob/master/LICENSE for the full license text. | ||
# SPDX-License-Identifier: MIT | ||
|
||
from .run import run, main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env python3 | ||
# This file is a part of marzer/poxy and is subject to the the terms of the MIT license. | ||
# Copyright (c) Mark Gillard <mark.gillard@outlook.com.au> | ||
# See https://github.com/marzer/poxy/blob/master/LICENSE for the full license text. | ||
# SPDX-License-Identifier: MIT | ||
|
||
try: | ||
from poxy.run import main | ||
except: | ||
from run import main | ||
|
||
if __name__ == '__main__': | ||
main() |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Submodule mcss
updated
from 000000 to b53d11
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.