diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-06-04 15:48:20 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-04 15:48:20 -0700 |
commit | 4688d201c33d9bc6840eeb61fb87bd62c2984f33 (patch) | |
tree | eea5f11c2ccf8b2fcab5ee40b16be097dfa1faaf /tools/make_spec.lua | |
parent | 36d2b7ecd1d4b1686e80744712ddf2cfc8594958 (diff) | |
parent | bb6b5ffbbbc1c5bab01138beaf68502c7a2e27b3 (diff) |
Merge pull request #406 from coding-horror/master
make interact more button-like and clearer
Diffstat (limited to 'tools/make_spec.lua')
-rw-r--r-- | tools/make_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make_spec.lua b/tools/make_spec.lua index 3425f35..60bcb18 100644 --- a/tools/make_spec.lua +++ b/tools/make_spec.lua @@ -209,7 +209,7 @@ local create_anchors = function(doc, meta, to) local examplenum_div = make_html_block('div', {{'class', 'examplenum'}}) local interact_link = make_html_inline('a', {{'class', 'dingus'}, {'title', 'open in interactive dingus'}}) - cmark.node_append_child(interact_link, make_text("(interact)")) + cmark.node_append_child(interact_link, make_text("Try It")) local examplenum_link = cmark.node_new(cmark.NODE_LINK) cmark.node_set_url(examplenum_link, '#example-' .. tostring(example)) cmark.node_append_child(examplenum_link, |