summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/docs/opml-export.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/fguillot/picofeed/docs/opml-export.markdown')
m---------vendor/fguillot/picofeed0
-rw-r--r--vendor/fguillot/picofeed/docs/opml-export.markdown46
2 files changed, 0 insertions, 46 deletions
diff --git a/vendor/fguillot/picofeed b/vendor/fguillot/picofeed
new file mode 160000
+Subproject 0a1d0d3950f7f047dc8fb1d80aa6296e15f306d
diff --git a/vendor/fguillot/picofeed/docs/opml-export.markdown b/vendor/fguillot/picofeed/docs/opml-export.markdown
deleted file mode 100644
index bd4f0b04b..000000000
--- a/vendor/fguillot/picofeed/docs/opml-export.markdown
+++ /dev/null
@@ -1,46 +0,0 @@
-OPML export
-===========
-
-Example with no categories
---------------------------
-
-```php
-use PicoFeed\Serialization\Export;
-
-$feeds = array(
- array(
- 'title' => 'Site title',
- 'description' => 'Optional description',
- 'site_url' => 'http://petitcodeur.fr/',
- 'site_feed' => 'http://petitcodeur.fr/feed.xml'
- )
-);
-
-$export = new Export($feeds);
-$opml = $export->execute();
-
-echo $opml; // XML content
-```
-
-Example with categories
------------------------
-
-```php
-use PicoFeed\Serialization\Export;
-
-$feeds = array(
- 'my category' => array(
- array(
- 'title' => 'Site title',
- 'description' => 'Optional description',
- 'site_url' => 'http://petitcodeur.fr/',
- 'site_feed' => 'http://petitcodeur.fr/feed.xml'
- )
- )
-);
-
-$export = new Export($feeds);
-$opml = $export->execute();
-
-echo $opml; // XML content
-``` \ No newline at end of file