This is an automated email from the ASF dual-hosted git repository.

rdale pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
     new 4125f94  render code blocks at EOF - CTR
     new 667134d  Merge branch 'tp33'
4125f94 is described below

commit 4125f949928067767bf19ed1cca14357cec657fc
Author: Robert Dale <robd...@gmail.com>
AuthorDate: Fri Mar 29 15:41:29 2019 -0400

    render code blocks at EOF - CTR
---
 docs/preprocessor/awk/tabify.awk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/docs/preprocessor/awk/tabify.awk b/docs/preprocessor/awk/tabify.awk
index 28e7cf6..d6ffacc 100644
--- a/docs/preprocessor/awk/tabify.awk
+++ b/docs/preprocessor/awk/tabify.awk
@@ -126,3 +126,10 @@ BEGIN {
     else code = code "\n" $0
   }
 }
+
+END {
+  # EOF
+  if (status == 3) {
+    print_tabs(next_id, tabs, blocks)
+  }
+}

Reply via email to