Guest User

Untitled

a guest
Nov 20th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. Fenced, line-level PHP:
  2.  
  3. ~~~
  4. <?php
  5. echo fimage();
  6. ?>
  7. ~~~
  8.  
  9. Fenced, PHP, line-level PHP:
  10.  
  11. ~~~ php
  12. <?php
  13. echo fimage();
  14. ?>
  15. ~~~
  16.  
  17. Fenced, inline HTML:
  18.  
  19. ~~~
  20. I'm just text, but with <b>bold</b> text
  21. ~~~
  22.  
  23. Fenced, PHP, inline HTML:
  24.  
  25. ~~~ php
  26. I'm just text, but with <b>bold</b> text
  27. ~~~
  28.  
  29. Fenced, inline PHP:
  30.  
  31. ~~~
  32. I'm just text, but with <?php echo $bold; ?> text
  33. ~~~
  34.  
  35. Fenced, PHP, inline PHP:
  36.  
  37. ~~~ php
  38. I'm just text, but with <?php echo $bold; ?> text
  39. ~~~
  40.  
  41. Fenced, html line-level:
  42.  
  43. ~~~
  44. <b>
  45. bold text
  46. </b>
  47. ~~~
  48.  
  49. Fenced, PHP, html line-level:
  50.  
  51. ~~~ php
  52. <b>
  53. bold text
  54. </b>
  55. ~~~
Add Comment
Please, Sign In to add comment