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.js 800B

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