Skip to content

Commit ec0b2fe

Browse files
committed
Fix example links. (#339)
Now that metafacture/metafacture-playground#153 has been resolved.
1 parent 49e9a4e commit ec0b2fe

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Creates a field with a defined value.
259259
add_field("<targetFieldName>", "<fieldValue>")
260260
```
261261

262-
[Example in Playground](https://metafacture.org/playground/?example=add+field)
262+
[Example in Playground](https://metafacture.org/playground/?example=add_field)
263263

264264
##### `array`
265265

@@ -295,7 +295,7 @@ end
295295
call_macro("<macroName>"[, <dynamicLocalVariables>...])
296296
```
297297

298-
[Example in Playground](https://metafacture.org/playground/?example=call+macro)
298+
[Example in Playground](https://metafacture.org/playground/?example=call_macro)
299299

300300
##### `copy_field`
301301

@@ -305,7 +305,7 @@ Copies a field from an existing field.
305305
copy_field("<sourceField>", "<targetField>")
306306
```
307307

308-
[Example in Playground](https://metafacture.org/playground/?example=copy+field)
308+
[Example in Playground](https://metafacture.org/playground/?example=copy_field)
309309

310310

311311
##### `format`
@@ -340,7 +340,7 @@ Moves a field from an existing field. Can be used to rename a field.
340340
move_field("<sourceField>", "<targetField>")
341341
```
342342

343-
[Example in Playground](https://metafacture.org/playground/?example=move+field)
343+
[Example in Playground](https://metafacture.org/playground/?example=move_field)
344344

345345

346346
##### `parse_text`
@@ -425,7 +425,7 @@ Removes a field.
425425
remove_field("<sourceField>")
426426
```
427427

428-
[Example in Playground](https://metafacture.org/playground/?example=remove+field)
428+
[Example in Playground](https://metafacture.org/playground/?example=remove_field)
429429

430430
##### `rename`
431431

@@ -456,7 +456,7 @@ set_array("<targetFieldName>")
456456
set_array("<targetFieldName>", "<value_1>"[, ...])
457457
```
458458

459-
[Example in Playground](https://metafacture.org/playground/?example=set+array)
459+
[Example in Playground](https://metafacture.org/playground/?example=set_array)
460460

461461
##### `set_field`
462462

@@ -601,7 +601,7 @@ Joins an array of strings into a single string.
601601
join_field("<sourceField>", "<separator>")
602602
```
603603

604-
[Example in Playground](https://metafacture.org/playground/?example=join+field)
604+
[Example in Playground](https://metafacture.org/playground/?example=join_field)
605605

606606
##### `lookup`
607607

@@ -680,7 +680,7 @@ Replaces a regular expression pattern in field values with a replacement string.
680680
replace_all("<sourceField>", "<regexp>", "<replacement>")
681681
```
682682

683-
[Example in Playground](https://metafacture.org/playground/?example=replace+all)
683+
[Example in Playground](https://metafacture.org/playground/?example=replace_all)
684684

685685
##### `reverse`
686686

@@ -700,7 +700,7 @@ sort_field("<sourceField>", reverse: "true")
700700
sort_field("<sourceField>", numeric: "true")
701701
```
702702

703-
[Example in Playground](https://metafacture.org/playground/?example=sort+field)
703+
[Example in Playground](https://metafacture.org/playground/?example=sort_field)
704704

705705
##### `split_field`
706706

@@ -710,7 +710,7 @@ Splits a string into an array and replaces the field value with this array.
710710
split_field("<sourceField>", "<separator>")
711711
```
712712

713-
[Example in Playground](https://metafacture.org/playground/?example=split+field)
713+
[Example in Playground](https://metafacture.org/playground/?example=split_field)
714714

715715
##### `substring`
716716

@@ -817,7 +817,7 @@ do list(path: "<sourceField>")
817817
end
818818
```
819819

820-
[Example in Playground](https://metafacture.org/playground/?example=do+list)
820+
[Example in Playground](https://metafacture.org/playground/?example=do_list)
821821

822822
Only the current element is accessible in this case (as the root element).
823823

@@ -829,7 +829,7 @@ do list(path: "<sourceField>", "var": "<variableName>")
829829
end
830830
```
831831

832-
[Example in Playground](https://metafacture.org/playground/?example=do+list+with+var)
832+
[Example in Playground](https://metafacture.org/playground/?example=do_list_with_var)
833833

834834
#### `do list_as`
835835

@@ -864,7 +864,7 @@ do once()
864864
end
865865
```
866866

867-
[Example in Playground](https://metafacture.org/playground/?example=do+once)
867+
[Example in Playground](https://metafacture.org/playground/?example=do_once)
868868

869869
In order to execute multiple blocks only once, tag them with unique identifiers:
870870

@@ -902,7 +902,7 @@ end
902902
call_macro("<macroName>"[, <dynamicLocalVariables>...])
903903
```
904904

905-
[Example in Playground](https://metafacture.org/playground/?example=do+put+macro)
905+
[Example in Playground](https://metafacture.org/playground/?example=do_put_macro)
906906

907907
### Conditionals
908908

0 commit comments

Comments
 (0)