-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
95 lines (66 loc) · 3.96 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
=== Markdeep Block ===
Contributors: neffff
Tags: markdown, markdeep, diagrams, graphics, mathjax, latex, block
Requires at least: 5.0
Requires PHP: 7.0
Tested up to: 6.0
Stable tag: 0.0.2
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Markdeep Block is a WordPress plugin for adding Gutenberg blocks supporting Markdeep syntax.
== Description ==
> "Markdeep is ideal for design documents, specifications, README files, code documentation, lab reports, blogs, and technical web pages. Because the source is plain text, Markdeep works well with software development toolchains."
> -- http://casual-effects.com/markdeep/
> "Markdeep is a text formatting syntax that extends Markdown, and a JavaScript program for making it work in browsers. The two most powerful features are its ability to run in any web browser on the client side and the inclusion of diagrams."
> -- https://casual-effects.com/markdeep/features.md.html
This plugin adds a gutenberg block supporting the [markdeep](http://casual-effects.com/markdeep/) language. The editor shows both a plaintext
area for composing the text, and a preview area to display the rendered block.
### MathJax & CDN
In order to support [MathJax][mj] features, the MathJax library is loaded from an external [CDN (cdnjs/cloudflare)](https://cdnjs.cloudflare.com/).
> MathJax.org does not collect, maintain, distribute, purchase, or sell personal data of any kind, and uses no cookies or other tracking
> or advertising techniques.
>
> Likewise, the MathJax software does not track you, and uses local storage only to maintain your preferences as set by the MathJax contextual menu.
>
> -- https://www.mathjax.org/#privacy-statement
If you do not change the CDN you will be subject to cloudflare's [terms][] & [privacy policy][].
This CDN can be changed with a one-line script. (Alternately, use the WordPress plugin file editor to uncomment a similar line in
`markdeep-block.php`). _In the future this should be an exposed configuration option._
To override the CDN use:
```php
// Markdeep currently uses version 2.7.6
add_filter( 'markdeepblock_mathjax_url', fn($u) => 'https://cdn.jsdelivr.net/npm/[email protected]/unpacked/MathJax.js?config=TeX-AMS-MML_HTMLorMML' );
```
[mj]: https://www.mathjax.org/
[terms]: https://www.cloudflare.com/website-terms/
[privacy policy]: https://www.cloudflare.com/privacypolicy/
### Planned features
* UI to configure CDN for JS resources (Markdeep, MathJax).
* Configurable style per block.
* Drop-down style selection of styles (globally & per-block).
* Get MathJax commands working in editor. _(MathJax currently works in posts)._
* Markdeep specific LaTeX/MathJax macros. (e.g. θ₀, θ₁, etc.)
* Configurable MathJax macros.
* Optional Table of Contents (currently suppressed)
### Logo
The logo is derived from [Dustin Curtis's](https://dustincurtis.com) https://github.com/dcurtis/markdown-mark.
== Installation ==
This plugin can be installed through the normal processes: the WordPress plugin directory, (hopefully) the WordPress block
directory, and a manual installation.
1. Upload the plugin files to the `/wp-content/plugins/markdeep-block` directory, or install the plugin through the WordPress plugins screen directly.
1. Activate the plugin through the 'Plugins' screen in WordPress.
== Frequently Asked Questions ==
= Can you make diagrams with this? =
Yes, in fact it's all done with text! See the [markdeep site](https://casual-effects.com/markdeep/features.md.html#diagramexamples) for specific
examples.
== Screenshots ==
1. Open the block by typing "/markdeep" (or use the sidebar and search)
1. When editing the block, there are 2 views. Use the upper area for writing, and the lower for displaying the diagram.
1. When the block is not selected, it will be displayed as it should be seen on the site.
1. As seen on my test site.
== Changelog ==
= 0.0.2 =
* Update to markdeep 1.15
== Upgrade Notice ==
= 0.0.2 =
Update markdeep to 1.15