set readme banners to absolute url

Signed-off-by: Lorenzo Lewis <lorenzo_lewis@icloud.com>
This commit is contained in:
Lorenzo Lewis
2023-07-28 19:37:14 +01:00
parent aba07c27b8
commit c46b464c69
26 changed files with 92 additions and 92 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
![plugin-shell](banner.png)
![plugin-shell](https://github.com/tauri-apps/plugins-workspace/blob/0417b7ad6047694cf101592ed65b41dc006df5ea/plugins/shell/banner.png)
Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application.
@@ -60,8 +60,8 @@ fn main() {
Afterwards all the plugin's APIs are available through the JavaScript guest bindings:
```javascript
import { Command } from "@tauri-apps/plugin-shell";
Command.create("git", ["commit", "-m", "the commit message"]);
import { Command } from '@tauri-apps/plugin-shell';
Command.create('git', ['commit', '-m', 'the commit message']);
```
## Contributing