diff --git a/docs/features/import_export.md b/docs/features/import_export.md index 85c3b1229..a7b448794 100644 --- a/docs/features/import_export.md +++ b/docs/features/import_export.md @@ -227,6 +227,12 @@ CookBookApp can export .zip files containing .html files. Upload the entire ZIP CopyMeThat can export .zip files containing an `.html` file as well as a folder containing all the images. Upload the entire ZIP to Tandoor to import all included recipes. +## Cookmate +Cookmate allows you to export a `.mcb` file which you can simply upload to tandoor and import all your recipes. + +## RecetteTek +RecetteTek exports are `.rtk` files which can simply be uploaded to tandoor to import all your recipes. + ## Melarecipes Melarecipes provides multiple export formats but only the `MelaRecipes` format can export the complete collection. diff --git a/vue/src/utils/integration.js b/vue/src/utils/integration.js index c5a450215..f5bace760 100644 --- a/vue/src/utils/integration.js +++ b/vue/src/utils/integration.js @@ -5,18 +5,18 @@ export const INTEGRATIONS = [ {id: 'CHEFTAP', name: "Cheftap", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#cheftap'}, {id: 'CHOWDOWN', name: "Chowdown", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#chowdown'}, {id: 'COOKBOOKAPP', name: "CookBookApp", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#cookbookapp'}, - {id: 'COOKMATE', name: "Cookmate", import: true, export: false, help_url: ''}, + {id: 'COOKMATE', name: "Cookmate", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#cookmate'}, {id: 'COPYMETHAT', name: "CopyMeThat", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#copymethat'}, {id: 'DOMESTICA', name: "Domestica", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#domestica'}, {id: 'MEALIE', name: "Mealie", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#mealie'}, {id: 'MEALMASTER', name: "Mealmaster", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#mealmaster'}, - {id: 'MELARECIPES', name: "Melarecipes", import: true, export: false, help_url: ''}, + {id: 'MELARECIPES', name: "Melarecipes", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#melarecipes'}, {id: 'NEXTCLOUD', name: "Nextcloud Cookbook", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#nextcloud'}, {id: 'OPENEATS', name: "Openeats", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#openeats'}, {id: 'PAPRIKA', name: "Paprika", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#paprika'}, {id: 'PEPPERPLATE', name: "Pepperplate", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#pepperplate'}, {id: 'PLANTOEAT', name: "Plantoeat", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#plantoeat'}, - {id: 'RECETTETEK', name: "RecetteTek", import: true, export: false, help_url: ''}, + {id: 'RECETTETEK', name: "RecetteTek", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#recettetek'}, {id: 'RECIPEKEEPER', name: "Recipekeeper", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#recipekeeper'}, {id: 'RECIPESAGE', name: "Recipesage", import: true, export: true, help_url: 'https://docs.tandoor.dev/features/import_export/#recipesage'}, {id: 'REZKONV', name: "Rezkonv", import: true, export: false, help_url: 'https://docs.tandoor.dev/features/import_export/#rezkonv'},