### Reusable Text Use file inclusion to stay DRY (Don't Repeat Yourself). Maintain reusable text in a separate file, then include it wherever it's needed. #### Separate File Here's a file containing some text that can be included in more than one place: @[:code_block](reusable_text.md) #### Template File Here's a template file that includes it: @[:code_block](includer.md) #### Command Here's the command to perform the inclusion (```--pristine``` suppresses inclusion comments): ```sh ruby ../../../bin/include --pristine includer.md included.md ``` #### Included File Here's the finished file with the inclusion: @[:code_block](included.md)