Last active
October 15, 2016 14:52
-
-
Save X-Raym/de8346d6d51899aabc676a58bf33fb09 to your computer and use it in GitHub Desktop.
A better export action list template. Still minimal but already more practical. Pure valid semantic HTML 5.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>REAPER actions list</title> | |
| </head> | |
| <body> | |
| <h1>REAPER actions list</h1> | |
| <p>Generated by REAPER v5.27pre4/OSX64</p> | |
| <h2>Section: Main, Main (alt recording)</h2> | |
| <table> | |
| <thead> | |
| <tr> | |
| <td>ID</td> | |
| <td>Name</td> | |
| <td>Translation</td> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td>{ID}</td> | |
| <td>{Name}</td> | |
| <td>{Translation}</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment