Skip to content

Commit 1d83353

Browse files
devvaannshabose
authored andcommitted
fix: broken links
1 parent 63ac7f7 commit 1d83353

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

README.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Extension Template
22

3-
Quick start and create a new `Phoenix Code node.js extension` by using this template. This
4-
template extension works in browser as well as desktop builds. In browser, it
3+
Quick start and create a new `Phoenix Code node.js extension` by using this template. This template extension works in browser as well as desktop builds. In browser, it
54
will not use node, and node.js based functionalities are not available. Desktop
65
builds will use node capabilities.
76

@@ -57,10 +56,7 @@ The `nodeConfig` object indicates that this is a Node extension.
5756

5857
### NodeConnector-API
5958

60-
create
61-
[NodeConnector-API](https://docs.phcode.dev/api/API-Reference/NodeConnector)
62-
to call functions and send events between your node.js and Phoenix Code
63-
extension components.
59+
create [NodeConnector-API](https://docs.phcode.dev/api/API-Reference/NodeConnector) to call functions and send events between your node.js and Phoenix Code extension components.
6460

6561
- This is available as a global object `global.createNodeConnector`. See above
6662
link for API docs.
@@ -74,8 +70,7 @@ extension components.
7470
Follow the below 4 steps to start using this template:
7571

7672
Refer this
77-
[link](https://docs.phcode.dev/api/writing-ext-themes)
78-
for detailed extension docs after following the below steps:
73+
[link](https://docs.phcode.dev/api/creating-extensions) for detailed extension documentation after following the below steps:
7974

8075
## step 1
8176

@@ -127,10 +122,10 @@ Create a new repository using this template.
127122

128123
# Detailed Documentation
129124

130-
Please go to [https://docs.phcode.dev/api/writing-ext-themes](https://docs.phcode.dev/api/writing-ext-themes) for more documentation/community support links.
125+
Please go to [https://docs.phcode.dev/api/creating-extensions](https://docs.phcode.dev/api/creating-extensionss) for more documentation/community support links.
131126

132127
# Publishing your extension to the repository
133128

134129
Once you have built your extension/theme, you can publish the extension to
135130
phcode.dev extension repository in a single step directly from this repo. Please
136-
see publish section in this link for more details: [Writing extension and themes](https://docs.phcode.dev/api/writing-ext-themes)
131+
see publish section in this link for more details: [Publishing extension and themes](https://docs.phcode.dev/api/publishing-extensions)

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/*global define, brackets, $ */
77

8-
// See detailed docs in https://github.com/phcode-dev/phoenix/wiki/How-To-Write-Extensions-And-Themes
8+
// See detailed docs in https://docs.phcode.dev/api/creating-extensions
99
// A good place to look for code examples for extensions: https://github.com/phcode-dev/phoenix/tree/main/src/extensions/default
1010

1111

node/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Zip `node/package-lock.json`, but not node modules.
77
*
88
* To communicate between this node file and the phoenix extension use: NodeConnector-API -
9-
* See. https://github.com/phcode-dev/phoenix/wiki/NodeConnector-API for detailed docs.
9+
* See. https://docs.phcode.dev/api/API-Reference/NodeConnector for detailed docs.
1010
**/
1111
console.log("hello world node extension");
1212

0 commit comments

Comments
 (0)