contents/glyph/book/macros/macros_core.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 |
----- title: "Glyph – Core Macros" content-type: page ----- <nav class="navigation"><a href="/glyph/book/ref_commands.html">← Command Reference</a> | <a href="/glyph/book/index.html">Contents</a> | <a href="/glyph/book/macros/macros_block.html">Block Macros →</a></nav> <section class="section"> <header><h1 id="m_add" class="toc"><code>add</code></h1></header> <p>Adds two or more integers together.</p> <p><strong>Example:</strong> <code>add[2|5|7]</code></p> </section> <section class="section"> <header><h1 id="m_alias" class="toc"><code>alias</code></h1></header> <p>Creates a macro alias.</p> <p><strong>Example:</strong> <code>alias[s|section]</code></p> <section class="section"> <header><h1 id="h_142" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The name of the alias.</td> </tr> <tr> <td>1</td> <td>The name of an existing macro.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_and" class="toc"><code>and</code></h1></header> <p>Conditional <code>and</code> operator, to be used with the <a href="#m_condition"><code>condition</code></a> macro.</p> <p><strong>Example:</strong> <code>?[and[true|false]|This is never displayed.]</code></p> <section class="section"> <header><h1 id="h_144" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The first expression to test</td> </tr> <tr> <td>1</td> <td>The second expression to test</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_attribute" class="toc"><code>attribute</code></h1></header> <p>Returns the value of the specified attribute. For a more complete example, see the <a href="#m_let"><code>let</code></a> macro.</p> <strong>Aliases:</strong> <code>@</code> <p><strong>Example:</strong> <code>@[title]</code></p> <section class="section"> <header><h1 id="h_146" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The name of the attribute to retrieve.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_attribute_" class="toc"><code>attribute:</code></h1></header> <p>Sets the value of the specified attribute. For a more complete example, see the ‡‡‡‡‡PLACEHOLDER¤277‡‡‡‡‡ macro.</p> <strong>Aliases:</strong> <code>@:</code> <p><strong>Example:</strong> <code>@:[title|Test Title]</code></p> <section class="section"> <header><h1 id="h_148" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The name of the attribute to set.</td> </tr> <tr> <td>1</td> <td>The value of the attribute.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_comment" class="toc"><code>comment</code></h1></header> <p>Evaluates to nothing. Used to add comments in a Glyph document that will not be displayed in output files.</p> <strong>Aliases:</strong> <code>--</code> <p><strong>Example:</strong> <code>--[=>[#link|This link will not be evaluated]]</code></p> <section class="section"> <header><h1 id="h_150" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The contents to comment out</td> </tr> </table> </section> <section class="section"> <header><h1 id="h_151" class="notoc">Remarks</h1></header> <p>Macros are not expanded within comments.</p> </section> </section> <section class="section"> <header><h1 id="m_condition" class="toc"><code>condition</code></h1></header> <p>Tests a conditional expression. For more information, see <a href="/glyph/book/text_editing/conditionals.html#cond_macros">Conditional Macros</a>.</p> <strong>Aliases:</strong> <code>?</code> <section class="section"> <header><h1 id="h_153" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The condition to test</td> </tr> <tr> <td>1</td> <td>The contents to expand if the condition is satisfied.</td> </tr> </table> </section> <section class="section"> <header><h1 id="h_154" class="notoc">Remarks</h1></header> <p>For examples see any of the following:</p> <ul> <li><a href="#m_and"><code>and</code></a> macro</li> <li><a href="#m_or"><code>or</code></a> macro</li> <li><a href="#m_not"><code>not</code></a> macro</li> <li><a href="#m_match"><code>match</code></a> macro</li> <li><a href="#m_eq"><code>eq</code></a> macro</li> </ul> </section> </section> <section class="section"> <header><h1 id="m_config" class="toc"><code>config</code></h1></header> <p>Returns the value of a configuration setting.</p> <strong>Aliases:</strong> <code>$</code> <p><strong>Example:</strong> <code>$[document.author]</code></p> <section class="section"> <header><h1 id="h_156" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The full name of a configuration setting.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_config_" class="toc"><code>config:</code></h1></header> <p>Sets the value of a configuration setting.</p> <strong>Aliases:</strong> <code>$:</code> <p><strong>Example:</strong> <code>$:[document.draft|true]</code></p> <section class="section"> <header><h1 id="h_158" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The full name of a configuration setting.</td> </tr> <tr> <td>1</td> <td>The new value of the configuration setting</td> </tr> </table> </section> <section class="section"> <header><h1 id="h_159" class="notoc">Remarks</h1></header> <p>This macro cannot be used in <a href="/glyph/book/compiling/programmatic_usage.html#modes">safe mode</a>.</p> </section> </section> <section class="section"> <header><h1 id="m_eq" class="toc"><code>eq</code></h1></header> <p>Conditional equality operator, to be used with the <a href="#m_condition"><code>condition</code></a> macro.</p> <p><strong>Example:</strong> <code>?[eq[$[document.draft]|true]|This is displayed only in draft documents.]</code></p> <section class="section"> <header><h1 id="h_161" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The first expression to test</td> </tr> <tr> <td>1</td> <td>The second expression to test</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_escape" class="toc"><code>escape</code></h1></header> <p>Evaluates to its value. Commonly used with the escaping delimiters <code>[=</code> and <code>=]</code>.</p> <strong>Aliases:</strong> <code>.</code> <p><strong>Example:</strong> <code>.[=Macros are escaped here =>[#test].=]</code></p> <section class="section"> <header><h1 id="h_163" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The contents to escape.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_fragment" class="toc"><code>fragment</code></h1></header> <p>Delimits a fragment of text that can be embedded using the <a href="#m_embed"><code>embed</code></a> macro.</p> <strong>Aliases:</strong> <code>##</code> <p><strong>Example:</strong> <code>##[test_fragment|This is an embeddable fragment]</code></p> <section class="section"> <header><h1 id="h_165" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The ID of the fragment.</td> </tr> <tr> <td>1</td> <td>The contents of the fragment.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_embed" class="toc"><code>embed</code></h1></header> <p>Embeds text previously-delimited using the <a href="#m_fragment"><code>fragment</code></a> macro.</p> <strong>Aliases:</strong> <code>&=</code> <p><strong>Example:</strong> <code>&=[test_fragment]</code></p> <section class="section"> <header><h1 id="h_167" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The ID of the fragment.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_gt" class="toc"><code>gt</code></h1></header> <p>Returns <em>true</em> if the first parameter is gt the second one.</p> <p><strong>Example:</strong> <code>greater than[5|2]</code></p> <section class="section"> <header><h1 id="h_169" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The first integer to compare.</td> </tr> <tr> <td>1</td> <td>The second integer to compare.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_gte" class="toc"><code>gte</code></h1></header> <p>Returns <em>true</em> if the first parameter is gte the second one.</p> <p><strong>Example:</strong> <code>greater than or equal to[5|2]</code></p> <section class="section"> <header><h1 id="h_171" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The first integer to compare.</td> </tr> <tr> <td>1</td> <td>The second integer to compare.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_include" class="toc"><code>include</code></h1></header> <p>Evaluates to the contents of a text file stored in the <code>text/</code> directory referenced by its relative path. If the <a href="/glyph/book/config/options.html#s_options_filters_by_file_extension"><code>options.filters_by_file_extension</code></a> setting is <code>true</code>, filters the contents of the file using the <a href="/glyph/book/macros/macros_filters.html#f_macros">filter macro</a> corresponding to the file extension.</p> <strong>Aliases:</strong> <code>@</code> <p><strong>Example:</strong> <code>include[frontmatter/introduction]</code></p> <section class="section"> <header><h1 id="h_173" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The file to include.</td> </tr> </table> </section> <section class="section"> <header><h1 id="h_174" class="notoc">Remarks</h1></header> <ul> <li> <p>This macro cannot be used in <a href="/glyph/book/compiling/programmatic_usage.html#modes">safe mode</a>.</p> </li> <li><code>.glyph</code> is assumed if no file extension is specified.</li> <li> <p>This macro can also be used to include <code>.rb</code> ruby files within the <code>lib</code> directory. File contents are evaluated in the context of the <a href="http://rubydoc.info/gems/glyph/Glyph">Glyph</a> module.</p> </li> </ul> </section> </section> <section class="section"> <header><h1 id="m_let" class="toc"><code>let</code></h1></header> <p>Used to bind one or more attributes via the <a href="#m_attribute"><code>attribute</code></a> macro. Actually, you can use <a href="#m_attribute"><code>attribute</code></a> macro inside any other macro, but it looks tidier in this way.</p> <section class="section"> <header><h1 id="h_176" class="notoc">Example</h1></header> <div class="CodeRay"> <div class="code"><pre><span class="line-numbers"><a href="#n1" name="n1">1</a></span>let[ <span class="line-numbers"><a href="#n2" name="n2">2</a></span> @:[a|2] <span class="line-numbers"><a href="#n3" name="n3">3</a></span> @:[b|3] <span class="line-numbers"><a href="#n4" name="n4">4</a></span> section[ <span class="line-numbers"><a href="#n5" name="n5">5</a></span> @title[Testing] <span class="line-numbers"><a href="#n6" name="n6">6</a></span> @[title]: @[a] * @[b] = multiply[@[a]|@[b]] --[Outputs: Testing: 2 * 3 = 6] <span class="line-numbers"><a href="#n7" name="n7">7</a></span> ] <span class="line-numbers"><a href="#n8" name="n8">8</a></span>]</pre></div> </div> </section> <section class="section"> <header><h1 id="h_177" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>Any content.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_load" class="toc"><code>load</code></h1></header> <p>Embeds the contents of a file.</p> <p><strong>Example:</strong> <code>load[my_samples.rb]</code></p> <section class="section"> <header><h1 id="h_179" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The file to embed, relative to the Glyph project folder.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_lt" class="toc"><code>lt</code></h1></header> <p>Returns <em>true</em> if the first parameter is lt the second one.</p> <p><strong>Example:</strong> <code>less than[5|2]</code></p> <section class="section"> <header><h1 id="h_181" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The first integer to compare.</td> </tr> <tr> <td>1</td> <td>The second integer to compare.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_lte" class="toc"><code>lte</code></h1></header> <p>Returns <em>true</em> if the first parameter is lte the second one.</p> <p><strong>Example:</strong> <code>less than or equal to[5|2]</code></p> <section class="section"> <header><h1 id="h_183" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The first integer to compare.</td> </tr> <tr> <td>1</td> <td>The second integer to compare.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_match" class="toc"><code>match</code></h1></header> <p>Checks a string against a regular expression.</p> <p><strong>Example:</strong> <code>?[match[Hello!|/^hell/i]|This is always displayed]</code></p> <section class="section"> <header><h1 id="h_185" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The string to check.</td> </tr> <tr> <td>1</td> <td>The regular expression to match against the string.</td> </tr> <tr> <td>2</td> <td>The contents to expand if the string matches.</td> </tr> </table> </section> <section class="section"> <header><h1 id="h_186" class="notoc">Remarks</h1></header> <p>This macro must be used with the <a href="#m_condition"><code>condition</code></a> macro.</p> </section> </section> <section class="section"> <header><h1 id="m_macro_" class="toc"><code>macro:</code></h1></header> <p>Defines a macro.</p> <strong>Aliases:</strong> <code>%:</code> <p><strong>Example:</strong> <code>%:[test|"<em>test: #{value}</em>"]</code></p> <section class="section"> <header><h1 id="h_188" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The name of the new macro.</td> </tr> <tr> <td>1</td> <td>The macro definition (Ruby code).</td> </tr> </table> </section> <section class="section"> <header><h1 id="h_189" class="notoc">Remarks</h1></header> <ul> <li> <p>This macro cannot be used in <a href="/glyph/book/compiling/programmatic_usage.html#modes">safe mode</a>.</p> </li> <li>The new macro can only be used <em>after</em> its declaration.</li> </ul> </section> </section> <section class="section"> <header><h1 id="m_multiply" class="toc"><code>multiply</code></h1></header> <p>Multiplies two or more integers together.</p> <p><strong>Example:</strong> <code>add[3|5|9]</code></p> </section> <section class="section"> <header><h1 id="m_not" class="toc"><code>not</code></h1></header> <p>Conditional <code>not</code> operator, to be used with the <a href="#m_condition"><code>condition</code></a> macro.</p> <p><strong>Example:</strong> <code>?[not[false]|This is always displayed.]</code></p> <section class="section"> <header><h1 id="h_192" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The expression to negate</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_output_" class="toc"><code>output?</code></h1></header> <p>Evaluates to true if Glyph is generating output in the specified format(s).</p> <p><strong>Example:</strong> <code>?[output?[web|web5]|This text is printed only when generating web or web5 output.]</code></p> <section class="section"> <header><h1 id="h_194" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0, ...</td> <td>a valid output target.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_or" class="toc"><code>or</code></h1></header> <p>Conditional <code>or</code> operator, to be used with the <a href="#m_condition"><code>condition</code></a> macro.</p> <p><strong>Example:</strong> <code>?[or[true|false]|This is always displayed.]</code></p> <section class="section"> <header><h1 id="h_196" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The first expression to test</td> </tr> <tr> <td>1</td> <td>The second expression to test</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_define_" class="toc"><code>define:</code></h1></header> <p>Defines a new macro in Glyph code (for more information, see <a href="/glyph/book/extending/interpreting.html#rewriting">Defining macros using Glyph</a>)</p> <strong>Aliases:</strong> <code>def:</code> <section class="section"> <header><h1 id="h_198" class="notoc">Example</h1></header> <div class="CodeRay"> <div class="code"><pre><span class="line-numbers"> <a href="#n1" name="n1">1</a></span>def:[factorial| <span class="line-numbers"> <a href="#n2" name="n2">2</a></span> ?[ <span class="line-numbers"> <a href="#n3" name="n3">3</a></span> eq[{{0}}|0]|1| <span class="line-numbers"> <a href="#n4" name="n4">4</a></span> multiply[ <span class="line-numbers"> <a href="#n5" name="n5">5</a></span> {{0}} | factorial[subtract[{{0}}|1]] <span class="line-numbers"> <a href="#n6" name="n6">6</a></span> ] <span class="line-numbers"> <a href="#n7" name="n7">7</a></span> ] <span class="line-numbers"> <a href="#n8" name="n8">8</a></span>] <span class="line-numbers"> <a href="#n9" name="n9">9</a></span>factorial[5]</pre></div> </div> </section> <section class="section"> <header><h1 id="h_199" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The name of the new macro.</td> </tr> <tr> <td>0</td> <td>The macro definition (Glyph code).</td> </tr> </table> </section> <section class="section"> <header><h1 id="h_200" class="notoc">Remarks</h1></header> <ul> <li>The new macro can only be used <em>after</em> its declaration.</li> <li> <p>This macro cannot be used in <a href="/glyph/book/compiling/programmatic_usage.html#modes">safe mode</a>.</p> </li> </ul> </section> </section> <section class="section"> <header><h1 id="m_ruby" class="toc"><code>ruby</code></h1></header> <p>Evaluates its value as Ruby code within the context of the <a href="http://rubydoc.info/gems/glyph/Glyph">Glyph</a> module.</p> <strong>Aliases:</strong> <code>%</code> <examples> %[Time.now] %[Glyph::VERSION] </examples> <section class="section"> <header><h1 id="h_202" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The Ruby code to evaluate.</td> </tr> </table> </section> <section class="section"> <header><h1 id="h_203" class="notoc">Remarks</h1></header> <p>This macro cannot be used in <a href="/glyph/book/compiling/programmatic_usage.html#modes">safe mode</a>.</p> </section> </section> <section class="section"> <header><h1 id="m_s" class="toc"><code>s</code></h1></header> <p>Can be used to dispatch almost any instance method of the ruby <a href="http://rubydoc.info/stdlib/core/1.9.2/String">String</a> class.</p> <examples> s/match[This is a test string|/test/] s/sub[This is a test string|/a test/|another test] </examples> </section> <section class="section"> <header><h1 id="m_snippet" class="toc"><code>snippet</code></h1></header> <p>Returns the value of a snippet.</p> <strong>Aliases:</strong> <code>&</code> <p><strong>Example:</strong> <code>&[glang]</code></p> <section class="section"> <header><h1 id="h_206" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The ID of the snippet to retrieve.</td> </tr> </table> </section> </section> <section class="section"> <header><h1 id="m_snippet_" class="toc"><code>snippet:</code></h1></header> <p>Defines a snippet.</p> <strong>Aliases:</strong> <code>&:</code> <p><strong>Example:</strong> <code>&:[test|This is a test]</code></p> <section class="section"> <header><h1 id="h_208" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The ID of the new snippet.</td> </tr> <tr> <td>1</td> <td>The contents of the new snippet.</td> </tr> </table> </section> <section class="section"> <header><h1 id="h_209" class="notoc">Remarks</h1></header> <p>The new snippet can only be used <em>after</em> its declaration.</p> </section> </section> <section class="section"> <header><h1 id="m_subtract" class="toc"><code>subtract</code></h1></header> <p>Subtracts two or more integers together.</p> <p><strong>Example:</strong> <code>add[10|5|2]</code></p> </section> <section class="section"> <header><h1 id="m_xml" class="toc"><code>xml</code></h1></header> <p>When used composed with another macro, it can be used to render arbitrary raw <span class="caps">XML</span> tags.</p> <p><strong>Example:</strong> <code>xml/img[@src[test.png]@alt[A Test image]]</code></p> </section> <section class="section"> <header><h1 id="m_while" class="toc"><code>while</code></h1></header> <p>Keeps evaluating the second parameter while a condition is satisfied.</p> <section class="section"> <header><h1 id="h_213" class="notoc">Example</h1></header> <div class="CodeRay"> <div class="code"><pre><span class="line-numbers"> <a href="#n1" name="n1">1</a></span>let[ <span class="line-numbers"> <a href="#n2" name="n2">2</a></span> @count[5] <span class="line-numbers"> <a href="#n3" name="n3">3</a></span> @text[-] <span class="line-numbers"> <a href="#n4" name="n4">4</a></span> while[gt[@[count]|0]| <span class="line-numbers"> <a href="#n5" name="n5">5</a></span> @:[text|s/concat[@[text]|@[count]-]] <span class="line-numbers"> <a href="#n6" name="n6">6</a></span> @:[count|subtract[@[count]|1]] <span class="line-numbers"> <a href="#n7" name="n7">7</a></span> ] <span class="line-numbers"> <a href="#n8" name="n8">8</a></span> @[text] --[Outputs: -5-4-3-2-1-] <span class="line-numbers"> <a href="#n9" name="n9">9</a></span>]</pre></div> </div> </section> <section class="section"> <header><h1 id="h_214" class="notoc">Parameters</h1></header> <table style="width:100%;"> <tr> <th style="width:30%">Parameter</th> <th>Description</th> </tr> <tr> <td>0</td> <td>The condition to check.</td> </tr> <tr> <td>1</td> <td>The code to evaluate while the condition is satisfied.</td> </tr> </table> </section> </section> <nav class="navigation"><a href="/glyph/book/ref_commands.html">← Command Reference</a> | <a href="/glyph/book/index.html">Contents</a> | <a href="/glyph/book/macros/macros_block.html">Block Macros →</a></nav> |