The reconcile package is used for DOM reconcilation in Isomorphic Go web applications.

isindex.dat 572B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #data
  2. <isindex>
  3. #errors
  4. #document
  5. | <html>
  6. | <head>
  7. | <body>
  8. | <form>
  9. | <hr>
  10. | <label>
  11. | "This is a searchable index. Enter search keywords: "
  12. | <input>
  13. | name="isindex"
  14. | <hr>
  15. #data
  16. <isindex name="A" action="B" prompt="C" foo="D">
  17. #errors
  18. #document
  19. | <html>
  20. | <head>
  21. | <body>
  22. | <form>
  23. | action="B"
  24. | <hr>
  25. | <label>
  26. | "C"
  27. | <input>
  28. | foo="D"
  29. | name="isindex"
  30. | <hr>
  31. #data
  32. <form><isindex>
  33. #errors
  34. #document
  35. | <html>
  36. | <head>
  37. | <body>
  38. | <form>