From 4807593a21bb1344ea64769c6ad640a8cb27a78e Mon Sep 17 00:00:00 2001 From: Bennett Date: Sun, 4 Oct 2020 16:38:12 +0200 Subject: Add DevDocs --- recipes/devdocs/README.md | 2 ++ recipes/devdocs/icon.png | Bin 0 -> 571509 bytes recipes/devdocs/icon.svg | 10 ++++++++++ recipes/devdocs/index.js | 2 ++ recipes/devdocs/package.json | 12 ++++++++++++ recipes/devdocs/webview.js | 4 ++++ 6 files changed, 30 insertions(+) create mode 100644 recipes/devdocs/README.md create mode 100644 recipes/devdocs/icon.png create mode 100644 recipes/devdocs/icon.svg create mode 100644 recipes/devdocs/index.js create mode 100644 recipes/devdocs/package.json create mode 100644 recipes/devdocs/webview.js (limited to 'recipes/devdocs') diff --git a/recipes/devdocs/README.md b/recipes/devdocs/README.md new file mode 100644 index 0000000..4d6cdb8 --- /dev/null +++ b/recipes/devdocs/README.md @@ -0,0 +1,2 @@ +# DevDocs for Ferdi +This is a Ferdi recipe for DevDocs diff --git a/recipes/devdocs/icon.png b/recipes/devdocs/icon.png new file mode 100644 index 0000000..05e65d9 Binary files /dev/null and b/recipes/devdocs/icon.png differ diff --git a/recipes/devdocs/icon.svg b/recipes/devdocs/icon.svg new file mode 100644 index 0000000..66af36e --- /dev/null +++ b/recipes/devdocs/icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/recipes/devdocs/index.js b/recipes/devdocs/index.js new file mode 100644 index 0000000..91113e0 --- /dev/null +++ b/recipes/devdocs/index.js @@ -0,0 +1,2 @@ +module.exports = Ferdi => class devdocs extends Ferdi { +}; diff --git a/recipes/devdocs/package.json b/recipes/devdocs/package.json new file mode 100644 index 0000000..2094584 --- /dev/null +++ b/recipes/devdocs/package.json @@ -0,0 +1,12 @@ +{ + "id": "devdocs", + "name": "DevDocs", + "version": "1.0.0", + "description": "devdocs", + "main": "index.js", + "author": "Ferdi ", + "license": "MIT", + "config": { + "serviceURL": "https://devdocs.io" + } +} diff --git a/recipes/devdocs/webview.js b/recipes/devdocs/webview.js new file mode 100644 index 0000000..7b5fee0 --- /dev/null +++ b/recipes/devdocs/webview.js @@ -0,0 +1,4 @@ +"use strict"; + +module.exports = Ferdi => { +}; -- cgit v1.2.3-54-g00ecf