Skip to content

Commit

Permalink
Merge pull request #2676 from philbog/patch-1
Browse files Browse the repository at this point in the history
Update import-recipe-bookmarklet.md
  • Loading branch information
boc-the-git authored Oct 27, 2023
2 parents f7f8c51 + 1e92395 commit 603a0c0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ You can use a [bookmarklet generator site](https://caiorss.github.io/bookmarklet
```js
var url = document.URL;
var mealie = "http://localhost:8080";
var dest = mealie + "/recipe/create/url?recipe_import_url=" + url;
var use_keywords= "&use_keywords=1" // Optional - use keywords from recipe - update to "" if you don't want that
var edity = "&edit=1" // Optional - keep in edit mode - update to "" if you don't want that
var dest = mealie + "/recipe/create/url?recipe_import_url=" + url + use_keywords + edity;
window.open(dest, "_blank");
```

0 comments on commit 603a0c0

Please sign in to comment.