Skip to content

Commit

Permalink
Fix invalid languages in code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed Jan 6, 2025
1 parent dfd0fc4 commit c12da54
Show file tree
Hide file tree
Showing 25 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion docs/1.12/content/Mods/Ex_Nihilo_Creatio/Crooking.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Crooking

## Package
```zenscirpt
```zenscript
mods.exnihilocreatio.Crook
```
## Methods
Expand Down
2 changes: 1 addition & 1 deletion docs/1.12/content/Mods/Ex_Nihilo_Creatio/Hammering.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Hammering

## Package
```zenscirpt
```zenscript
`mods.exnihilocreatio.Hammer`
```

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Heating Sources

## Package
```zenscirpt
```zenscript
`mods.exnihilocreatio.Heat`
```

Expand Down
6 changes: 3 additions & 3 deletions docs/1.12/content/Mods/IC2ClassicTweaker/Electrolyzer.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import mods.ic2.ClassicElectrolyzer;

### Add Both Recipe

```zenscripts
```zenscript
mods.ic2.ClassicElectrolyzer.addBothRecipe(IItemStack output, IItemStack input, int energy);
mods.ic2.ClassicElectrolyzer.addBothRecipe(<minecraft:diamond>, <minecraft:dirt> * 64, 500);
Expand All @@ -22,7 +22,7 @@ mods.ic2.ClassicElectrolyzer.addBothRecipe(<minecraft:diamond>, <minecraft:dirt>

### Add Charge Recipe

```zenscripts
```zenscript
mods.ic2.ClassicElectrolyzer.addChargeRecipe(IItemStack output, IItemStack input, int energy);
mods.ic2.ClassicElectrolyzer.addChargeRecipe(<minecraft:emerald>, <minecraft:stone> * 64, 500);
Expand All @@ -34,7 +34,7 @@ mods.ic2.ClassicElectrolyzer.addChargeRecipe(<minecraft:emerald>, <minecraft:sto

### Add Discharge Recipe

```zenscripts
```zenscript
mods.ic2.ClassicElectrolyzer.addDischargeRecipe(IItemStack output, IItemStack input, int energy);
mods.ic2.ClassicElectrolyzer.addDischargeRecipe(<minecraft:cobblestone> * 64, <minecraft:bedrock>, 500);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Package

```zemscript
```zenscript
import mods.ic2.LiquidFuelGenerator;
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ench.getMaxEnchantability(int level);
Returns the translated name (e.g. "smite IV").
Returns a string and requires the level of the enchantment as int parameter.
Does the same as [IEnchantment's](/Vanilla/Enchantments/IEnchantment/) `.displayName` ZenGetter!
```objectzenscriptivec
```zenscript
ench.getTranslatedName(int level);
```

Expand Down
2 changes: 1 addition & 1 deletion docs/1.12/content/Vanilla/Items/IItemStack.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ You can cast an IItemStack to an [IBlock](/Vanilla/Blocks/IBlock/), as long as y
```

You can also test if an IItemStack contains an ItemBlock and can thus be converted:
```zenscript:
```zenscript
<minecraft:dirt>.isItemBlock; // true
<minecraft:stick>.isItemBlock; // false
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| Recipe Name | String |

Example:
```ZenScript
```zenscript
// mods.immersivepetroleum.DistillationTower.remove(String recipeName);
mods.immersivepetroleum.DistillationTower.remove("oilcracking");
Expand All @@ -19,7 +19,7 @@ mods.immersivepetroleum.DistillationTower.remove("oilcracking");
|-------------|-------------|

Example:
```ZenScript
```zenscript
mods.immersivepetroleum.DistillationTower.removeAll();
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Flux/t | Integer |

Example:
```ZenScript
```zenscript
//mods.immersivepetroleum.FuelRegistry.registerGeneratorFuel(IFluidStack fuel, int fluxPerTick);
mods.immersivepetroleum.FuelRegistry.registerGeneratorFuel(<fluid:minecraft:water> * 180, 64); // Using 180mB per Tick
Expand All @@ -21,7 +21,7 @@ mods.immersivepetroleum.FuelRegistry.registerGeneratorFuel(<fluid:minecraft:wate
| Fluid/t | Fluidstack |

Example:
```ZenScript
```zenscript
//mods.immersivepetroleum.FuelRegistry.registerMotorboatFuel(IFluidStack fuel);
mods.immersivepetroleum.FuelRegistry.registerMotorboatFuel(<fluid:minecraft:water> * 6); // Using 6mB per Tick
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| Recipe Name | String |

Example:
```ZenScript
```zenscript
// mods.immersivepetroleum.ReservoirRegistry.remove(String recipeName);
mods.immersivepetroleum.ReservoirRegistry.remove("aquifer");
Expand All @@ -19,7 +19,7 @@ mods.immersivepetroleum.ReservoirRegistry.remove("aquifer");
|-------------|-------------|

Example:
```ZenScript
```zenscript
// mods.immersivepetroleum.ReservoirRegistry.removeAll();
mods.immersivepetroleum.ReservoirRegistry.removeAll();
Expand Down Expand Up @@ -108,7 +108,7 @@ builderInstance.build("Example Name");
---

Copy/Paste example:
```ZenScript
```zenscript
new ReservoirBuilder(<fluid:minecraft:lava>, 25000, 100000, 0, 20)
.addDimensions(false, ["overworld"])
.addBiomes(false, ["minecraft:desert"])
Expand Down
2 changes: 1 addition & 1 deletion docs/1.16/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The first one is finding the recipetype we want to add a recipe to. This should

In any case, once you have your example recipe, you can start adding things following the JSON structure. An example from [CharcoalPit2](https://github.com/EnderiumSmith/CharcoalPit2/blob/master/src/main/resources/data/charcoal_pit/recipes/barrel_recipes/beer.json) looks like this:

```JSON
```json
{
"type": "charcoal_pit:barrel",
"item_in":{
Expand Down
2 changes: 1 addition & 1 deletion docs/1.17/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The first one is finding the recipetype we want to add a recipe to. This should

In any case, once you have your example recipe, you can start adding things following the JSON structure. An example from [CharcoalPit2](https://github.com/EnderiumSmith/CharcoalPit2/blob/master/src/main/resources/data/charcoal_pit/recipes/barrel_recipes/beer.json) looks like this:

```JSON
```json
{
"type": "charcoal_pit:barrel",
"item_in":{
Expand Down
2 changes: 1 addition & 1 deletion docs/1.18/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The first one is finding the recipetype we want to add a recipe to. This should

In any case, once you have your example recipe, you can start adding things following the JSON structure. An example from [CharcoalPit2](https://github.com/EnderiumSmith/CharcoalPit2/blob/master/src/main/resources/data/charcoal_pit/recipes/barrel_recipes/beer.json) looks like this:

```JSON
```json
{
"type": "charcoal_pit:barrel",
"item_in":{
Expand Down
2 changes: 1 addition & 1 deletion docs/1.19.3/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.19.4/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.19/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.20.1/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.20.2/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.20.3/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.20.4/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.20.5/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.20.6/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.20/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.21.1/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down
2 changes: 1 addition & 1 deletion docs/1.21/content/mods/other_mods.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ For the rest of this page, we will be looking at adding a Create Cutting recipe

You can find this recipe [here](https://github.com/Creators-of-Create/Create/blob/mc1.19/dev/src/generated/resources/data/create/recipes/cutting/warped_hyphae.json):

```JSON
```json
{
"type": "create:cutting",
"ingredients": [
Expand Down

0 comments on commit c12da54

Please sign in to comment.