Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. @code_type d .d
  2. @comment_type // %s
  3.  
  4. @title No Weave Test
  5.  
  6. @s Notes
  7.  
  8. Provide a set of fields for the Block class that denote any modifiers.
  9.  
  10. Create a place to describe modifiers.
  11.  
  12. Provide a way to parse modifiers from a codeblock statement.
  13.  
  14. @s Code
  15.  
  16. --- Hello.d --- incorrect-modifier
  17. // 1: This should be in the html
  18. // Unfortunately the block below wont be in the html
  19. @{I want to include this}
  20. ---
  21.  
  22. --- I want to include this --- noWeave
  23. // 2: This shouldn't be in the html
  24. ---
  25.  
  26. The codeblock below won't appear in weave.
  27. --- inTangle.d --- noWeave incorrect-modifier
  28. // 3: This shouldn't be in the html ether.
  29. ---
  30.  
  31. The codeblock below also won't appear in weave, but this descriptive line will.
  32. --- inTangle.d --- noWeave +=
  33. // 4: This should be added to the inTangle.d file. But not in the html.
  34. ---
  35.  
  36. We should see a codeblock here in the html.
  37. --- This is a regular codeblock ---
  38. // 5: And it will be exported.
  39. ---
  40.  
  41. --- nothing to see here 2 ---
  42. // 5.5: Won't appear in tangle? But will be in html.
  43. ---
  44.  
  45. --- nothing to see here
  46. // 6: Won't appear in tangle? But will be in html.
  47. ---
  48.  
  49. --- old.d
  50. // This should be in the old.d file
  51. ---
  52.  
  53. --- old.d +=
  54. // And this should be appended to the old.d file.
  55. ---
  56.  
  57. --- old2.d
  58. // This should not exist.
  59. ---
  60.  
  61. --- old2.d :=
  62. // This should have redefined the above line.
  63. ---
  64.  
  65. The End.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement