Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dgrammatiko/export-to-md
Basic export of Joomla's article to static md files (Hugo, Jekyll, 11ty, etc)
https://github.com/dgrammatiko/export-to-md
Last synced: 19 days ago
JSON representation
Basic export of Joomla's article to static md files (Hugo, Jekyll, 11ty, etc)
- Host: GitHub
- URL: https://github.com/dgrammatiko/export-to-md
- Owner: dgrammatiko
- License: unlicense
- Created: 2019-08-09T18:05:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-26T16:58:03.000Z (over 3 years ago)
- Last Synced: 2024-10-12T11:25:40.038Z (27 days ago)
- Language: PHP
- Size: 13.7 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Simple CLI Plugin
- Will export all your Joomla articles to a category based directory
- Each file will get the name of the article slug### How to?
From your Joomla's root path, execute the following commands:
```
cd cli
``````
git clone [email protected]:dgrammatiko/export-to-md.git
``````
composer install
```edit `exportmd.php` and specify a directory name (line 4):
```
define('BASEFOLDER', 'some_folder_name_goes_here');
```Run this commnd for exporting Joomla's articles:
```
php exportmd.php
```or this one for exporting k2 items:
```
php exportk2.php
```That's it, copy the contents of this directory to your 11ty data folder...