-
released this
2022-04-19 08:53:33 -05:00 | 48 commits to master since this releasev1.8.0
Features
- A block-level
figure
extension,incorporealcms.mdx.figures
, has been added, withfigcaption
support, which properly treats figures as block level entities and whose children (e.g. images) don't need to be in other Markdown blocks like paragraph tags.- This is in part stemming from my dislike of other attempts at a
figure
extension, which violate HTML and/or are too specific to images. This should end up being somewhat generic though I haven't tested anything except images yet.
- This is in part stemming from my dislike of other attempts at a
Improvements
incorporealcms.mdx.pydot
is less greedy and now supports multiple unique diagrams on one page.incorporealcms.mdx.pydot
syntax has been altered in order to be backwards compatible with standard Markdown code fences.- Styling tweaks around introduction of figures, removing some old image and figure classes and replacing them with good general purpose figure styling.
- In the light/dark styles, because of the use of figures and clickable images inside figures, the default underline on links has been removed, replaced with colored red text instead. This is a bit of a "try it and see if it grows on me change"
- In the light/dark styles, because of the above, headers are now the default color instead of colored red, as they were visually indistinguishable and kind of overwhelming together.
- Some small padding, line height, etc. tweaks. More negative space overall.
Miscellaneous
- Requirements bump, again, affecting some tests.
- The default
python-markdown
configuration has been a bit more closely aligned with my usage.
Downloads
- A block-level
-
released this
2022-03-24 23:06:40 -05:00 | 62 commits to master since this releasev1.7.0
Miscellaneous
- Removed
mdx_linkify
dependency, pretty superfluous in the end, just use the<url>
syntax. - Removed
tzlocal
dependency, my current id says I want to display things in UTC, though maybe I'll make this a configuration option eventually. - "plain" styling made slightly less plain, the
<img>
floats are now rendered, and the header breadcrumbs and style menu is now spaced in one line as in the other styles. - Requirements bumps.
Downloads
- Removed
-
released this
2022-01-17 16:55:24 -06:00 | 66 commits to master since this releasev1.6.0
Miscellaneous
- License changed to GNU AGPLv3+. Prior versions, under GPLv2, are still available in the archives.
- Python 3.10 supported, which caused...
- Python 3.7 support to be dropped, hence the minor version bump.
coverage
message about differing options addressed.- Some minor organizational tweaks to
CONTRIBUTING.md
.
Downloads
-
v1.5.4 - style tweaks Stable
released this
2022-01-03 12:42:40 -06:00 | 70 commits to master since this releasev1.5.4
Miscellaneous
- Undo the change to the red font in the dark style, as it didn't contrast well on many displays.
Downloads
-
v1.5.3 - style tweaks Stable
released this
2022-01-02 22:59:14 -06:00 | 71 commits to master since this releasev1.5.3
Miscellaneous
- Provide a 75% max-width class for images I want biggish.
- Slightly reduce the font size for the stylish styles.
- Color tweaks to the stylish styles.
Downloads
-
released this
2021-11-03 15:55:51 -05:00 | 74 commits to master since this releasev1.5.2
Improvements
- Some defaults and static files specific to my site have been replaced/removed (#15).
- Above settings are mentioned in the README so that one knows to override the defaults (#15).
Miscellaneous
- Eliminated some warnings about how the pydot markdown renderer initialized itself.
Downloads
-
released this
2021-10-08 07:30:46 -05:00 | 79 commits to master since this releasev1.5.1
Miscellaneous
- Font sizes removed from the main content and headers, deferring to browser default, since what we had was only slightly different anyway.
- Requirements bumps.
- The extra for pydot rendering is now called 'dot' rather than 'graphviz'.
Downloads
-
released this
2021-06-24 11:46:43 -05:00 | 82 commits to master since this releasev1.5.0
Features
- Graphs can now be written inline in Markdown with pydot fenced code blocks, by starting a code fence with
~~~pydot:filename.png
and entering dot. These are rendered at request-time by pydot and served as an inline image.
Miscellaneous
- Markdown errors are caught in a better way in the code.
- The license declaration in
setup.py
now matches the README and LICENSE. tox
is also testing with Python 3.9.tox
is also using Safety for package checks.
Downloads
- Graphs can now be written inline in Markdown with pydot fenced code blocks, by starting a code fence with
-
released this
2021-06-06 22:28:43 -05:00 | 88 commits to master since this releasev1.4.0
Improvements
- Markdown files can supply a "Redirect" meta tag to skip rendering and instead send a 301 to the browser.
- Reimplement
base-wide.html
to extendbase.html
. - The footer has
clear: both
applied to it.
Bugfixes
base-wide.html
is actually styled properly.
Miscellaneous
- Project relicensed under GPLv2 or newer.
- CONTRIBUTING written up, README has installation and usage information now.
Downloads
-
released this
2021-04-30 19:32:06 -05:00 | 95 commits to master since this releasev1.3.0
Features
- Pages can supply the 'Template' meta tag in order to specify an alternative template than the default
base.html
. - Provide the first alternative template, the same layout but at full (well 95%) page width.
Downloads
- Pages can supply the 'Template' meta tag in order to specify an alternative template than the default