-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
90 additions
and
19 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 |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
/.cache | ||
/.python-version | ||
/ChangeLog | ||
/ChangeLog.orig | ||
/ChangeLog.rej | ||
/mma.css | ||
/mma.css.map | ||
__pycache__/ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- ChangeLog 2024-08-09 09:09:48.813412728 -0400 | ||
+++ ChangeLog-spell-corrected 2024-08-09 09:10:01.463349041 -0400 | ||
@@ -52,7 +52,7 @@ | ||
2021-09-04 rocky <[email protected]> | ||
|
||
* mathics_pygments/builtins.py, | ||
- mathics_pygments/data/mma-tables.json: Fix script capital N. Rebuld | ||
+ mathics_pygments/data/mma-tables.json: Fix script capital N. Rebuild | ||
tables | ||
|
||
2021-06-27 rocky <[email protected]> | ||
@@ -73,7 +73,7 @@ | ||
|
||
2021-06-22 R. Bernstein <[email protected]> | ||
|
||
- * : Merge pull request #2 from Mathics3/administrivia Varous lintings | ||
+ * : Merge pull request #2 from Mathics3/administrivia Various lintings | ||
|
||
2021-06-22 rocky <[email protected]> | ||
|
||
@@ -91,7 +91,7 @@ | ||
2021-06-22 rocky <[email protected]> | ||
|
||
* .github/workflows/autoblack.yml, .github/workflows/{osx.yaml => | ||
- osx.yml}, .github/workflows/{ubuntu.yaml => ubuntu.yml}: Varous | ||
+ osx.yml}, .github/workflows/{ubuntu.yaml => ubuntu.yml}: Various | ||
lintings | ||
|
||
2021-06-22 rocky <[email protected]> | ||
@@ -144,7 +144,7 @@ | ||
|
||
2021-05-14 rocky <[email protected]> | ||
|
||
- * CHANGES.rst, MANIFEST.in, Makefile, mathics_pygments/version.py: | ||
+ * CHANGES.rst, MANIFEST.in, Makefile, mathics_pygments/version.py: | ||
Get ready for release 1.0.0 | ||
|
||
2021-05-14 rocky <[email protected]> | ||
@@ -154,7 +154,7 @@ | ||
|
||
2021-05-13 rocky <[email protected]> | ||
|
||
- * .gitignore, MANIFEST.in, mathics_pygments/builtins.py: | ||
+ * .gitignore, MANIFEST.in, mathics_pygments/builtins.py: | ||
Administriva | ||
|
||
2021-05-12 rocky <[email protected]> | ||
@@ -167,7 +167,7 @@ | ||
|
||
* mathics_pygments/builtins.py, | ||
mathics_pygments/data/mma-tables.json, mathics_pygments/lexer.py, | ||
- mathics_pygments/style.py: More oeprators, what's up with Degree | ||
+ mathics_pygments/style.py: More operators, what's up with Degree | ||
|
||
2021-05-09 rocky <[email protected]> | ||
|
||
@@ -337,4 +337,3 @@ | ||
2016-02-14 Ravi Menon <[email protected]> | ||
|
||
* Initial commit for v0.1.0 of the Mathematica Lexer for Pygments | ||
- |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright (c) 2016 rsmenon | ||
# Copyright (c) 2021 Rocky Bernstein | ||
# Copyright (c) 2021, 2024 Rocky Bernstein | ||
# Licensed under the MIT License (https://opensource.org/licenses/MIT) | ||
|
||
from mathics_pygments.lexer import MathematicaLexer | ||
from mathics_pygments.style import MathematicaNotebookStyle, MathematicaStyle | ||
from mathics_pygments.version import __version__ | ||
|
||
__all__ = [ | ||
MathematicaLexer, | ||
MathematicaNotebookStyle, | ||
MathematicaStyle, | ||
"MathematicaLexer", | ||
"MathematicaNotebookStyle", | ||
"MathematicaStyle", | ||
"__version__", | ||
] |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
# space around "=" below. | ||
|
||
# fmt: off | ||
__version__="1.0.3.dev0" # noqa | ||
__version__="1.0.3" # noqa |
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