mirror of
https://github.com/rooyca/obsidian-api-request.git
synced 2026-07-22 07:50:27 +00:00
feat: reusable variables (#28)
This commit is contained in:
parent
6c59ef7877
commit
ffedd3d7e4
3 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "api-request",
|
||||
"name": "APIRequest",
|
||||
"version": "1.3.6",
|
||||
"version": "1.3.7",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Fetch data from APIs or other sources. Responses in JSON, MD or HTML directly in your notes.",
|
||||
"author": "rooyca",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "api-request",
|
||||
"version": "1.3.6",
|
||||
"version": "1.3.7",
|
||||
"description": "Fetch data from APIs or other sources. Responses in JSON, MD or HTML directly in your notes.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
// CLEAN UP THIS MESS
|
||||
// ---------------------------------------------
|
||||
|
||||
import { App, Editor, MarkdownView, Modal, Plugin, Notice, requestUrl, Setting } from 'obsidian';
|
||||
import { App, Editor, MarkdownView, Modal, Plugin, Notice, requestUrl } from 'obsidian';
|
||||
import { readFrontmatter, parseFrontmatter } from 'src/functions/frontmatterUtils';
|
||||
import { MarkdownParser } from 'src/functions/mdparse';
|
||||
import { saveToID, addBtnCopy, replaceOrder, nestedValue, toDocument } from 'src/functions/general';
|
||||
|
|
|
|||
Loading…
Reference in a new issue