feat: reusable variables (#28)

This commit is contained in:
rooyca 2024-06-20 10:59:32 -05:00
parent 6c59ef7877
commit ffedd3d7e4
3 changed files with 3 additions and 3 deletions

View file

@ -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",

View file

@ -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": {

View file

@ -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';