Skip to content

Commit ed71728

Browse files
committed
run formatter
1 parent e38588a commit ed71728

File tree

7 files changed

+33
-31
lines changed

7 files changed

+33
-31
lines changed

package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
2-
"name": "",
3-
"type": "module",
4-
"version": "0.0.1",
5-
"scripts": {
6-
"dev": "astro dev",
7-
"start": "astro dev",
8-
"build": "astro build",
9-
"preview": "astro preview",
10-
"astro": "astro",
11-
"format": "prettier --plugin prettier-plugin-astro --plugin prettier-plugin-svelte --write ."
12-
},
13-
"dependencies": {
14-
"@astrojs/starlight": "^0.23.2",
15-
"astro": "^4.8.3",
16-
"starlight-links-validator": "^0.8.0",
17-
"starlight-typedoc": "^0.12.1",
18-
"typedoc": "^0.25.13",
19-
"typedoc-plugin-markdown": "4.0.0-next.60",
20-
"typedoc-plugin-mdn-links": "^3.1.25"
21-
},
22-
"devDependencies": {
23-
"prettier": "^3.2.5",
24-
"prettier-plugin-astro": "^0.13.0",
25-
"prettier-plugin-svelte": "^3.2.3"
26-
}
2+
"name": "",
3+
"type": "module",
4+
"version": "0.0.1",
5+
"scripts": {
6+
"dev": "astro dev",
7+
"start": "astro dev",
8+
"build": "astro build",
9+
"preview": "astro preview",
10+
"astro": "astro",
11+
"format": "prettier --plugin prettier-plugin-astro --plugin prettier-plugin-svelte --write ."
12+
},
13+
"dependencies": {
14+
"@astrojs/starlight": "^0.23.2",
15+
"astro": "^4.8.3",
16+
"starlight-links-validator": "^0.8.0",
17+
"starlight-typedoc": "^0.12.1",
18+
"typedoc": "^0.25.13",
19+
"typedoc-plugin-markdown": "4.0.0-next.60",
20+
"typedoc-plugin-mdn-links": "^3.1.25"
21+
},
22+
"devDependencies": {
23+
"prettier": "^3.2.5",
24+
"prettier-plugin-astro": "^0.13.0",
25+
"prettier-plugin-svelte": "^3.2.3"
26+
}
2727
}

src/content/docs/guides/advancedUseCases.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ If you are willing to dip your toes into the world of [JavaScript](https://devel
77

88
:::note
99
The following examples assume that you have:
10+
1011
1. [JS Engine](https://github.com/mProjectsCode/obsidian-js-engine-plugin) installed and enabled.
1112
2. Enabled **JavaScript** in the Meta Bind settings.
12-
:::
13+
:::
1314

1415
:::caution
1516
I would recommend that you are familiar with JavaScript before attempting to use these examples.
@@ -71,4 +72,5 @@ return engine.markdown.create(str);
7172
````
7273

7374
## Additional Examples
75+
7476
There are additional advanced examples available in the GitHub Repository [here](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/tree/release/exampleVault/Advanced%20Examples). Have another one? Please submit a pull request.

src/content/docs/guides/obsidianPublish.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ Use at your own risk. I do not accept issues and feature requests for publish sp
1515
This guide assumes that you already have Obsidian Publish set up with a custom domain, so that you can use a `publish.js` file.
1616

1717
To get meta bind working in Obsidian Publish, you need to copy the contents of [this file](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/blob/master/PublishLoad.js) into your `publish.js` file.
18-
For the correct appearance, you need to copy [this file](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/blob/master/styles.css) into your `publish.css` file.
18+
For the correct appearance, you need to copy [this file](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/blob/master/styles.css) into your `publish.css` file.

src/content/docs/guides/viewFields.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ This feature requires the that you have the following:
146146

147147
1. [JS Engine](https://github.com/mProjectsCode/obsidian-js-engine-plugin) installed and enabled.
148148
2. Enabled **JavaScript** in the Meta Bind settings.
149-
:::
149+
:::
150150

151151
JS View Fields consist of two sections, separated by `---`.
152152
The first section contains [Bind Targets](/obsidian-meta-bind-plugin-docs/guides/bindtargets) and other configuration.

src/content/docs/reference/buttonActions/inlineJs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This feature requires the that you have the following:
1010

1111
1. [JS Engine](https://github.com/mProjectsCode/obsidian-js-engine-plugin) installed and enabled.
1212
2. Enabled **JavaScript** in the Meta Bind settings.
13-
:::
13+
:::
1414

1515
```ts
1616
interface InlineJsButtonAction {

src/content/docs/reference/buttonActions/runJavaScript.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This feature requires the that you have the following:
1010

1111
1. [JS Engine](https://github.com/mProjectsCode/obsidian-js-engine-plugin) installed and enabled.
1212
2. Enabled **JavaScript** in the Meta Bind settings.
13-
:::
13+
:::
1414

1515
```ts
1616
interface JSButtonAction {

src/content/docs/reference/buttonActions/updateMetadata.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The evaluate feature requires that you have the following:
2323

2424
1. [JS Engine](https://github.com/mProjectsCode/obsidian-js-engine-plugin) installed and enabled.
2525
2. Enabled **JavaScript** in the Meta Bind settings.
26-
:::
26+
:::
2727

2828
#### Example
2929

0 commit comments

Comments
 (0)