Skip to content

Commit

Permalink
Merge branch 'mealie-next' into fix/mealplan-date-off-by-one
Browse files Browse the repository at this point in the history
  • Loading branch information
boc-the-git authored Oct 27, 2023
2 parents c918b8f + 603a0c0 commit 8379661
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 8379661

Please sign in to comment.