From 537edbbb51b886ad7c65c80b353eda5dd9c4e293 Mon Sep 17 00:00:00 2001 From: inertia <amartin75@gmail.com> Date: Sat, 20 Mar 2021 17:41:23 -0700 Subject: [PATCH] fixed links --- _tutorials-javascript/getting_started.md | 2 +- _tutorials-javascript/reblogging_post.md | 2 +- _tutorials-javascript/submit_comment_reply.md | 2 +- _tutorials-javascript/submit_post.md | 2 +- _tutorials-recipes/node-config.md | 4 ++-- _tutorials-recipes/plugin-and-api-list.md | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/_tutorials-javascript/getting_started.md b/_tutorials-javascript/getting_started.md index a1044200..00b3bcff 100644 --- a/_tutorials-javascript/getting_started.md +++ b/_tutorials-javascript/getting_started.md @@ -11,7 +11,7 @@ For Javascript tutorials, we will use the opensource library [@hivechain/dhive]( ### Node.js -To get the most out of these tutorials, you should be familiar with [Node.js](https://nodejs.org/en/), [ES6](https://babeljs.io/learn-es2015/) aka [es2015](http://www.ecma-international.org/ecma-262/6.0/), the DOM, and modern Javascript programming practices. +To get the most out of these tutorials, you should be familiar with [Node.js](https://nodejs.org/en/), [ES6](https://babeljs.io/learn-es2015/) aka [es2015](https://www.ecma-international.org/ecma-262/6.0/), the DOM, and modern Javascript programming practices. You can still learn a lot of these if they aren't in your base skill-set; it'll be much easier if they are. ### Your Dev Environment diff --git a/_tutorials-javascript/reblogging_post.md b/_tutorials-javascript/reblogging_post.md index 2efd418e..528f2854 100644 --- a/_tutorials-javascript/reblogging_post.md +++ b/_tutorials-javascript/reblogging_post.md @@ -131,7 +131,7 @@ If the reblog fails the `console.log` will present a long line of error code: There is a line in the error log indicating "Account has already reblogged this post" indicating exactly that. This process can be run until a positive result is found. -It should be noted that reblogging a post does not create a new post on the blockchain but merely shares the post to whomever is following the user doing the reblog. Along with `reblogging` the `custom_json` broadcast operation also includes options for following users and editing blog content. More information on how to use the `broadcast` operation and options surrounding the operation can be found on the Hive [Devportal]({{ '/apidefinitions/#apidefinitions-broadcast-ops-comment' | relative_url }}) +It should be noted that reblogging a post does not create a new post on the blockchain but merely shares the post to whomever is following the user doing the reblog. Along with `reblogging` the `custom_json` broadcast operation also includes options for following users and editing blog content. More information on how to use the `broadcast` operation and options surrounding the operation can be found on the Hive [Devportal]({{ '/apidefinitions/#broadcast_ops_comment' | relative_url }}) ## To run this tutorial diff --git a/_tutorials-javascript/submit_comment_reply.md b/_tutorials-javascript/submit_comment_reply.md index b08e932e..9c6db6ed 100644 --- a/_tutorials-javascript/submit_comment_reply.md +++ b/_tutorials-javascript/submit_comment_reply.md @@ -135,7 +135,7 @@ A successful comment will output something like the following to the console: That's all there is to it. -The `broadcast` operation has more to offer than just committing a post/comment to the blockchain. It provides a mulititude of options that can accompany this commit. The max payout and percent of hive dollars can be set. When authors don't want all of the benifits from a post, they can set the payout factors to zero or beneficiaries can be set to receive part of the rewards. You can also set whether votes are allowed or not. The broadcast to the blockchain can be modified to meet the exact requirements of the author. More information on how to use the `broadcast` operation can be found on the Hive [Devportal]({{ '/apidefinitions/#apidefinitions-broadcast-ops-comment' | relative_url }}) with a list of the available broadcast options under the specific [Appbase API]({{ '/apidefinitions/#broadcast_ops_comment_options' | relative_url }}) +The `broadcast` operation has more to offer than just committing a post/comment to the blockchain. It provides a mulititude of options that can accompany this commit. The max payout and percent of hive dollars can be set. When authors don't want all of the benifits from a post, they can set the payout factors to zero or beneficiaries can be set to receive part of the rewards. You can also set whether votes are allowed or not. The broadcast to the blockchain can be modified to meet the exact requirements of the author. More information on how to use the `broadcast` operation can be found on the Hive [Devportal]({{ '/apidefinitions/#broadcast_ops_comment' | relative_url }}) with a list of the available broadcast options under the specific [Appbase API]({{ '/apidefinitions/#broadcast_ops_comment_options' | relative_url }}) ### To Run the tutorial diff --git a/_tutorials-javascript/submit_post.md b/_tutorials-javascript/submit_post.md index a5d079d2..184e5324 100644 --- a/_tutorials-javascript/submit_post.md +++ b/_tutorials-javascript/submit_post.md @@ -107,7 +107,7 @@ Note that the `parent_author` and `parent_permlink` fields are used for replies After the post has been broadcast to the network, we can simply set all the fields to empty strings and show the post link to check it from a condenser instance running on the selected testnet. -The `broadcast` operation has more to offer than just committing a post/comment to the blockchain. It provides a mulititude of options that can accompany this commit. The max payout and percent of hive dollars can be set. When authors don't want all of the benifits from a post, they can set the payout factors to zero or beneficiaries can be set to receive part of the rewards. You can also set whether votes are allowed or not. The broadcast to the blockchain can be modified to meet the exact requirements of the author. More information on how to use the `broadcast` operation can be found on the Hive [Devportal]({{ '/apidefinitions/#apidefinitions-broadcast-ops-comment' | relative_url }}) with a list of the available broadcast options under the specific [Appbase API]({{ '/apidefinitions/#broadcast_ops_comment_options' | relative_url }}) +The `broadcast` operation has more to offer than just committing a post/comment to the blockchain. It provides a mulititude of options that can accompany this commit. The max payout and percent of hive dollars can be set. When authors don't want all of the benifits from a post, they can set the payout factors to zero or beneficiaries can be set to receive part of the rewards. You can also set whether votes are allowed or not. The broadcast to the blockchain can be modified to meet the exact requirements of the author. More information on how to use the `broadcast` operation can be found on the Hive [Devportal]({{ '/apidefinitions/#broadcast_ops_comment' | relative_url }}) with a list of the available broadcast options under the specific [Appbase API]({{ '/apidefinitions/#broadcast_ops_comment_options' | relative_url }}) ### To Run the tutorial diff --git a/_tutorials-recipes/node-config.md b/_tutorials-recipes/node-config.md index 8ae8de86..d8213945 100644 --- a/_tutorials-recipes/node-config.md +++ b/_tutorials-recipes/node-config.md @@ -226,7 +226,7 @@ track-account-range = Defines a list of operations which will be explicitly logged. -See: [#301](#https://github.com/steemit/steem/issues/301), [#521](https://github.com/steemit/steem/issues/521) +See: [#301](https://github.com/steemit/steem/issues/301), [#521](https://github.com/steemit/steem/issues/521) ```ini # default @@ -253,7 +253,7 @@ history-whitelist-ops = Defines a list of operations which will be explicitly ignored. -See: [#301](#https://github.com/steemit/steem/issues/301), [#521](https://github.com/steemit/steem/issues/521) +See: [#301](https://github.com/steemit/steem/issues/301), [#521](https://github.com/steemit/steem/issues/521) ```ini # default diff --git a/_tutorials-recipes/plugin-and-api-list.md b/_tutorials-recipes/plugin-and-api-list.md index fb94d3e7..9f102813 100644 --- a/_tutorials-recipes/plugin-and-api-list.md +++ b/_tutorials-recipes/plugin-and-api-list.md @@ -27,7 +27,7 @@ canonical_url: plugin-and-api-list.html * [`rewards_api`](#rewards_api) * [`tags_api`](#tags_api) * [`transaction_status_api`](#transaction_status_api) -* [`witness_api`](#witness_api) +* [`witness_api`](#witness_api-deprecated) ### `account_by_key_api` -- GitLab