Linux 软件免费装

Plugin Name

开发者 pReya
更新时间 2023年8月29日 21:01
PHP版本: 7.0 及以上
WordPress版本: 6.3
版权: GPLv2 or later
版权网址: 版权信息

标签

markdown github gitlab

下载

0.0.1

详情介绍:

This is a plugin for Wordpress to embed Markdown files from external web sources (e.g. GitHub, GitLab, etc) into WordPress content using the shortcode [external_markdown]. A possible use case for this is to show content from a single source of truth (like a GitHub repository) on your WordPress website. Features Instructions / Examples Download and unpack or clone this repository into your wp-content/plugins folder, so the PHP file resides in wp-content/plugins/external-markdown/external-markdown.php. If you use the Guttenberg editor, you need to add a "Shortcode" block first. If your're using the classic editor, you can use the shortcode right away. Simple embed The url parameter takes the URL to the Markdown file you want to embed. Make sure to use the "raw" URL when you use GitHub, GitLab, etc. [external_markdown url="https://raw.githubusercontent.com/pReya/wordpress-external-markdown/main/README.md"] Adjust caching duration The ttl parameter controls how long the cached version is used, before it's fetched again. The value is given in seconds. So 24 hours (24 60 60) result in a value of 86400. [external_markdown ttl=86400 url="https://raw.githubusercontent.com/pReya/wordpress-external-markdown/main/README.md"] Adjust container CSS class The class parameter takes your desired class name for the external markdown container. The default class name for the container is class='external-markdown'. [external_markdown class="my-classname" url="https://raw.githubusercontent.com/pReya/wordpress-external-markdown/main/README.md"] Attention when using GitHub, GitLab, etc. When embedding content from Git hosting services like GitHub or GitLab, you need to make sure to use the proper "raw" markdown URL. You can find this URL in the upper right corner of the web view. Attribution