Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

html-block-names.mjs 763B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // This module is copied from <https://spec.commonmark.org/0.29/#html-blocks>.
  2. export default [
  3. 'address',
  4. 'article',
  5. 'aside',
  6. 'base',
  7. 'basefont',
  8. 'blockquote',
  9. 'body',
  10. 'caption',
  11. 'center',
  12. 'col',
  13. 'colgroup',
  14. 'dd',
  15. 'details',
  16. 'dialog',
  17. 'dir',
  18. 'div',
  19. 'dl',
  20. 'dt',
  21. 'fieldset',
  22. 'figcaption',
  23. 'figure',
  24. 'footer',
  25. 'form',
  26. 'frame',
  27. 'frameset',
  28. 'h1',
  29. 'h2',
  30. 'h3',
  31. 'h4',
  32. 'h5',
  33. 'h6',
  34. 'head',
  35. 'header',
  36. 'hr',
  37. 'html',
  38. 'iframe',
  39. 'legend',
  40. 'li',
  41. 'link',
  42. 'main',
  43. 'menu',
  44. 'menuitem',
  45. 'nav',
  46. 'noframes',
  47. 'ol',
  48. 'optgroup',
  49. 'option',
  50. 'p',
  51. 'param',
  52. 'section',
  53. 'source',
  54. 'summary',
  55. 'table',
  56. 'tbody',
  57. 'td',
  58. 'tfoot',
  59. 'th',
  60. 'thead',
  61. 'title',
  62. 'tr',
  63. 'track',
  64. 'ul'
  65. ]