Guest User

Untitled

a guest
May 27th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #!/usr/bin/awk -f
  2. BEGIN { in_code_block = 0 }
  3. /^```/ {
  4. if (!in_code_block) {
  5. in_code_block = 1;
  6. first_line = 1;
  7. } else {
  8. in_code_block = 0;
  9. print "";
  10. }
  11. }
  12. {
  13. if (in_code_block && !first_line) {
  14. print;
  15. }
  16. first_line = 0;
  17. }
Add Comment
Please, Sign In to add comment