Revert "set readme banners to absolute url"

This reverts commit c46b464c69.
This commit is contained in:
Lorenzo Lewis
2023-07-28 19:39:22 +01:00
parent c46b464c69
commit 7cc86edae8
26 changed files with 92 additions and 92 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
![plugin-fs](https://github.com/tauri-apps/plugins-workspace/blob/0417b7ad6047694cf101592ed65b41dc006df5ea/plugins/fs/banner.png)
![plugin-fs](banner.png)
Access the file system.
@@ -60,9 +60,9 @@ fn main() {
Afterwards all the plugin's APIs are available through the JavaScript guest bindings:
```javascript
import { metadata } from '@tauri-apps/plugin-fs';
import { metadata } from "@tauri-apps/plugin-fs";
await metadata('/path/to/file');
await metadata("/path/to/file");
```
## Contributing