WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: documents-from-git (Used by 57 domains)

Documents from Git

👤 nilsnolde 📦 v2.2.0 🔗 Plugin Homepage

Official documentation: https://github.com/gis-ops/wordpress-markdown-git

This WordPress Plugin lets you easily publish, collaborate on and version control your [Markdown, Jupyter notebook] documents directly from your favorite remote Git platform, even if it’s self-hosted.

The advantages are:

  • Write documents in your favorite editor and just push to your remote repository to update your blog instantly
  • Use the power of version control: publish different versions of the document in different posts, i.e. from another branch or commit than latest master
  • Easy to update by your readers via pull requests, minimizing the chance of stale tutorials

The following document types are currently supported:

  • Markdown
  • Jupyter notebooks (only for public repositories)

The following platforms are currently supported:

  • Github
  • Bitbucket
  • Gitlab

Usage

Note, this plugin uses Github’s wonderful /markdown API to render to HTML. This comes with 2 caveats:

  1. Unless authenticated, the rate limit is set at 60 requests per minute. Since v1.1.0 the plugin is capable of statically caching content. In case that’s not dynamic enough for you, your only option currently is to not use any cache in which case every document will be pulled from your provider every time someone opens it on your site. Then it’s strongly recommended to create a Github access token and register it with the plugin. Then the rate limit will be set to 5000 requests per hour. See Global attributes section for details on how to do that.
  2. The Markdown content cannot exceed 400 KB, so roughly 400 000 characters incl whitespace. If not a monographic dissertation, this should not be an applicable limit though.

Shortcodes

The plugin features a variety of shortcodes.

Publish documents

The document-specific shortcodes follow a pattern of [git--], where

  • can be one of
    • github: if you use Github as your VCS platform
    • bitbucket: if you use Bitbucket as your VCS platform
    • gitlab: if you use Gitlab as your VCS platform
  • can be one of
    • markdown: Render your Markdown files hosted on your VCS platform in Github’s rendering style
    • jupyter: Render your Jupyter notebook hosted on your VCS platfrom (only for public repositories)
    • checkout: Renders a small badge-like box with a link to the document and the date of the last commit
    • history: Renders a

      section with the last commit dates, messages and authors

Manipulate rendering style

Additionally, there’s an enclosing shortcode [git-add-css] which adds a

to wrap its contents. That way you can manipulate the style freely with additional CSS classes. Follow these steps:

  1. Add a CSS file to your theme’s root folder, which contains some classes, e.g. class1, class2, class3
  2. Enqueue the CSS file by adding wp_enqueue_style('my-style', get_template_directory_uri().'/my-style.css'); to the theme’s functions.php
  3. Add the enclosing git-add-css shortcode to your post with the custom CSS classes in the classes attribute, e.g.:

    [git-add-css classes="class1 class2 class3"]
    [git-gitlab-checkout url=...]
    [git-gitlab-markdown url=...]
    [git-gitlab-history url=...]
    [/git-add-css]

Attributes

Each shortcode takes a few attributes, indicating if it’s required for public or private repositories:

Attribute
Action
Public repo
Private repo
Type
Description

url
all except git-add-css
:ballot_box_with_check:
:ballot_box_with_check:
string
The browser URL of the document, e.g. https://github.com/gis-ops/wordpress-markdown-git/blob/master/README.md

user
all except git-add-css
:negative_squared_cross_mark:
:ballot_box_with_check:
string
The user name (not email) of an authorized user

token
all except git-add-css
:negative_squared_cross_mark:
:ballot_box_with_check:
string
The access token/app password for the authorized user

cache_ttl
all except git-add-css
:negative_squared_cross_mark:
:negative_squared_cross_mark:
integer
The time in seconds that the plugin will cache, only for cache_strategy=static.

cache_strategy
all except git-add-css
:negative_squared_cross_mark:
:negative_squared_cross_mark:
integer
Only static caching is implemented so far. dynamic caching is on the way!

limit
history
:negative_squared_cross_mark:
:negative_squared_cross_mark:
integer
Limits the history of commits to this number. Default 5.

classes
git-add-css
:ballot_box_with_check:
:ballot_box_with_check:
string
The additional CSS classes to render the content with

Global attributes

Since most attributes will be the same across the entire system, this plugin offers the possibility to set all attributes globally except for url:

In the menu PluginsPlugin Editor, choose “Documents from Git” and enter your preferences in the includes/config.json.

Note, setting the attributes manually in the shortcode has always precedence over any settings in includes/config.json.

Caching

Often we need to prioritize speed when loading content and, in addition, it is very costly to fetch, load and format the content every time we need to read the content of the post.

This plugin soon offers 2 methods for caching, static and dynamic which can be set via the cache_strategy property.

Static caching (cache_strategy=static)

This is the default strategy, as it doesn’t require any user action.

The property cache_ttl sets how many seconds the content cache will keep alive.

Currently there’s no way to flush the cache manually. However, changing cache_ttl or the history limit will create a new cache.

Dynamic caching (cache_strategy=dynamic)

This is not implemented yet. See #20 for details.

Token authorization

You need to authorize via user and token if you intend to publish from a private repository. You don’t need to authorize if the repository is open.

However, keep in mind that some platforms have stricter API limits for anonymous requests which are greatly extended if you provide your credentials. So even for public repos it could make sense. And unless you use this plugin’s caching capabilities, it’s strongly recommended to register a Github access token regardless of the VCS hosting platform, see the beginning of the chapter.

How to generate the token depends on your platform:

This plugin needs only Read access to your repositories. Keep that in mind when creating an access token.

Examples

We publish our own tutorials with this plugin: https://gis-ops.com/tutorials/.

Publish Markdown from Github

[git-github-markdown url="https://github.com/gis-ops/tutorials/blob/master/qgis/QGIS_SimplePlugin.md"]

Publish Markdown from Github with 1 hour cache

[git-github-markdown url="https://github.com/gis-ops/tutorials/blob/master/qgis/QGIS_SimplePlugin.md" cache_ttl="3600" cache_strategy="static"]

Publish Jupyter notebook from Github

[git-github-jupyter url="https://github.com/GIScience/openrouteservice-examples/blob/master/python/ortools_pubcrawl.ipynb"]

Publish from a private repository

[git-bitbucket-jupyter user=nilsnolde token=3292_2p3a_84-2af url="https://bitbucket.org/nilsnolde/test-wp-plugin/src/master/README.md"]

Display last commit and document URL from Bitbucket

[git-bitbucket-checkout url="https://bitbucket.org/nilsnolde/test-wp-plugin/src/master/README.md"]

Display commit history from Gitlab

git-gitlab-history limit=5 url="https://gitlab.com/nilsnolde/esy-osm-pbf/-/blob/master/README.md"]

Use additional CSS classes to style

The following example will put a dashed box around the whole post:

`

[git-add-css classes=”md-dashedbox”]
[git-github-checkout url=”https://github.com/gis-ops/tutorials/blob/master/qgis/QGIS_SimplePlugin.md”]
[git-github-markdown url=”https://github.com/gis-ops/tutorials/blob/master/qgis/QGIS_SimplePlugin.md”]
[git-github-history url=”https://github.com/gis-ops/tutorials/blob/master/qgis/QGIS_SimplePlugin.md”]
[/git-add-css]
`

With the following CSS file contents enqueued to your theme:

`css

div.md_dashedbox {
position: relative;
font-size: 0.75em;
border: 3px dashed;
padding: 10px;
margin-bottom:15px
}

div.md_dashedbox div.markdown-github {
color:white;
line-height: 20px;
padding: 0px 5px;
position: absolute;
background-color: #345;
top: -3px;
left: -3px;
text-transform:none;
font-size:1em;
font-family: “Helvetica Neue”,Helvetica,Arial,sans-serif;
}
`

DomainExposuresHeadersLast Checked
d*p*a*a*m*s*r*.com (WP 6.9.4) C 2026-06-30 16:28:26
c*e*e*c*f*e*.de (WP 5.8.1) ⚠️ F 2026-06-17 15:42:15
o*r*i*f*r*a*i*.de (WP 7.0) F 2026-06-16 10:10:31
l*k*d*.eu (WP 6.8.5) 👤 F 2026-06-14 21:21:18
r*n*i*i*-*i*.de (WP 5.8.1) ⚠️ F 2026-06-14 10:46:06
p*n*h*l*t*o*m.io (WP 6.9.4) 👤 F 2026-06-07 08:22:58
s*m*a*e*g*m*s.com (WP 6.9.4) F 2026-06-03 00:12:01
t*e*o*o*k*f*a.com (WP 6.9.4) F 2026-06-01 17:47:33
m*r*h*n*a*.com (WP 7.0) F 2026-06-01 16:04:49
0*5*o*u*i*n.com (WP 6.1.10) ⚠️ F 2026-06-01 03:07:28
q*e*f*c*.io (WP 7.0) F 2026-05-31 09:41:56
f*y*i*h*.com (WP 7.0) F 2026-05-31 09:27:34
n*r*v*s*m.com A 2026-05-29 20:39:03
d*t*a*h*o*g.org F 2026-05-29 01:29:45
p*e*i*n*r*i*i*g.com (WP 6.8.3) F 2026-05-29 00:30:07
p*e*i*n*a*a.com (WP 6.8.3) F 2026-05-29 00:30:07
d*i*v*n*v.com (WP 7.0) F 2026-05-28 19:06:22
v*i*e*.com (WP 6.9.4) F 2026-05-28 09:20:15
c*c*r*r.com (WP 7.0) F 2026-05-27 17:26:11
p*c.edu F 2026-05-26 17:42:09
c*d*w*t*a*h*v*l*e.org F 2026-05-26 13:56:31
s*i*i*s*i*u*.de F 2026-05-26 03:43:55
s*g*i*t*o*t*a*e.com (WP 6.8.3) F 2026-05-25 21:26:27
a*z*a*s.eu F 2026-05-24 00:54:35
r*b*n*e*k*.com (WP 6.2.9) ⚠️ 🔓 F 2026-05-23 23:41:03
s*l*r*p*a*i*.de (WP 6.8.5) B 2026-05-23 02:26:32
o*e*a*e*t*y.com F 2026-05-22 01:50:45
o*e*t*i*g*a*.com (WP 6.9.4) 🔓 F 2026-05-22 01:38:46
s*l*r*p*a*i*.com (WP 6.8.5) B 2026-05-19 22:26:03
k*s*a*i*e*a*k*.com (WP 6.9.4) F 2026-05-18 04:21:48
w*o*.org F 2026-05-16 22:09:12
d*n*e*e*a*s*.com (WP 6.9.4) F 2026-05-16 04:19:06
m*r*o*d*s*m.com F 2026-05-15 07:51:17
j*r*m*b*u*.com (WP 6.9.4) F 2026-05-12 10:28:25
l*n*o*n*a*g*d*.com (WP 6.8.5) F 2026-05-11 05:26:14
j*v*o.rs 🔓 F 2026-05-10 21:46:55
c*n*.ca (WP 6.9.4) F 2026-05-10 10:38:03
s*s*e*c*a*t*m*n.com (WP 6.9.4) F 2026-05-10 10:03:39
p*n*h*l*t*o*m.com (WP 6.9.4) F 2026-05-10 05:00:45
b*n*f*t*t*.com (WP 6.7.1) F 2026-05-09 18:34:04
p*i*a*s.com (WP 6.8.3) F 2026-05-09 18:28:44
m*r*s*b*o*.com (WP 6.9.4) F 2026-05-09 09:25:25
c*n*r*l*y*a*.com (WP 6.9.4) F 2026-05-09 07:19:02
g*l*e*-*i*q*i*.com F 2026-05-09 06:51:03
c*d*w*t*a*h*v*l*e.com F 2026-05-09 04:46:53
p*a*o*.com F 2026-05-08 13:10:55
p*s*a*a*n*u*g.de (WP 6.9.4) F 2026-05-08 01:21:27
e*l*b*.com (WP 6.9.4) F 2026-05-07 22:46:36
b*n*f*t.sg (WP 6.7.1) F 2026-05-07 21:25:31
b*r*.rs F 2026-05-07 18:53:39
c*a*.de (WP 6.9.4) F 2026-05-07 18:15:25
s*i*u*1*.com (WP 6.9.4) F 2026-05-07 15:45:09
s*i*n*m*n*.com (WP 6.9.4) F 2026-05-07 15:28:27
c*o*d*a*i*e*a*k*.com (WP 6.9.4) F 2026-05-07 13:42:54
b*h*a*.com (WP 6.9.4) C 2026-05-07 04:48:25
s*d*g*o*e.com (WP 6.9.4) F 2026-05-04 05:17:52
d*g*t*l*c*u*t*r*u*i.ch (WP 6.9.4) F 2026-05-03 10:23:55

Top 50 Plugins

Plugin Count
elementor 1,750,798
contact-form-7 1,746,547
elementor-pro 1,031,719
woocommerce 800,956
revslider 607,745
jetpack 457,244
js_composer 422,537
wp-rocket 329,776
essential-addons-for-elementor-lite 264,800
complianz-gdpr 258,242
gravityforms 251,643
cookie-law-info 229,226
instagram-feed 225,872
google-site-kit 220,218
sitepress-multilingual-cms 210,489
google-analytics-for-wordpress 208,353
header-footer-elementor 207,420
bluehost-wordpress-plugin 185,665
elementskit-lite 181,686
gutenberg-core 161,771
gutenberg 160,141
cookie-notice 152,032
litespeed-cache 131,722
wpforms-lite 128,447
the-events-calendar 125,310
gtranslate 123,501
astra-sites 118,760
popup-maker 112,277
woocommerce-payments 111,168
tablepress 100,251
coblocks 99,500
honeypot 96,748
astra-addon 93,387
all-in-one-seo-pack 91,890
wp-smushit 91,320
LayerSlider 90,164
duracelltomi-google-tag-manager 89,654
bb-plugin 85,635
premium-addons-for-elementor 84,994
akismet 83,910
cleantalk-spam-protect 82,550
mailchimp-for-wp 82,457
megamenu 80,000
woocommerce-gateway-stripe 79,996
borlabs-cookie 79,780
ml-slider 79,018
fusion-builder 77,748
ewww-image-optimizer 75,671
formidable 75,644
smart-slider-3 75,436

Top 50 Themes

Theme Count
hello-elementor 608,976
Divi 503,311
astra 418,628
flatsome 127,300
Avada 122,091
generatepress 116,343
pub 111,718
oceanwp 82,548
kadence 78,906
enfold 71,312
salient 65,362
h4 55,615
twentyseventeen 55,069
twentytwentyfour 52,785
bb-theme 51,832
betheme 51,750
cocoon-master 50,921
blocksy 49,920
dt-the7 45,424
twentytwentyfive 43,534
neve 38,928
Avada-Child-Theme 36,842
gox 34,577
woodmart 33,173
bridge 32,315
twentytwentyone 31,438
lightning 29,642
twentytwenty 29,112
swell 27,908
Impreza 26,219
bricks 25,476
Newspaper 23,478
twentytwentythree 23,465
twentytwentytwo 19,644
epik-redesign 19,283
uncode 18,584
twentysixteen 17,679
pro 17,161
sydney 16,674
storefront 16,498
extendable 14,995
Total 14,569
hello-theme-child-master 13,377
yith-wonder 13,366
factory-templates-4 13,262
themify-ultra 12,923
yootheme 12,701
hestia 12,658
twentynineteen 11,833
porto 11,761