/** * @file Tumblr grammar for tree-sitter * @author Oscar Wallberg * @license Apache-2.0 */ /// // @ts-check export default grammar({ name: "tumblr", rules: { // TODO: add the actual grammar rules source_file: $ => "hello" } });