Skip to content

Commit 802ac3e

Browse files
committed
some doc updates
1 parent fef4fc5 commit 802ac3e

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The pins can be described by a simple YAML based description and the tool automa
3636

3737
### Web Editor
3838

39-
1. Go to https://splitbrain.github.io/pinoutleaf/ (replace placeholders)
39+
1. Go to https://splitbrain.github.io/pinoutleaf/
4040
2. Edit the YAML configuration in the editor.
4141
3. The SVG diagrams will update automatically.
4242
4. Click the images to download them

public/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@
2424
When you create the pinout for a new commonly available PCB please submit a pull request or issue, so
2525
it can be added to the list of available pinouts.
2626
</p>
27+
28+
<p>
29+
<a href="https://github.com/splitbrain/pinoutleaf?tab=readme-ov-file#configuration-syntax">Read the docs</a>
30+
for more info on available config options.
31+
</p>
2732
</div>
2833
<div class="panel panel-output">
2934
<div id="output"></div>

src/Editor.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ export class Editor {
9393
const savedYaml = localStorage.getItem(this.STORAGE_KEY);
9494
if (savedYaml) {
9595
this.ace.setValue(savedYaml, -1);
96+
} else {
97+
this.ace.setValue("# Hi!\n# New here? Load an example from below!", -1);
9698
}
9799
}
98100
}

0 commit comments

Comments
 (0)