rib.js 1.4 KB

1234567891011121314151617181920212223242526
  1. module.exports = function(hljs) {
  2. return {
  3. keywords:
  4. 'ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis ' +
  5. 'Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone ' +
  6. 'CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail ' +
  7. 'DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format ' +
  8. 'FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry ' +
  9. 'Hider Hyperboloid Identity Illuminate Imager Interior LightSource ' +
  10. 'MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte ' +
  11. 'MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option ' +
  12. 'Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples ' +
  13. 'PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection ' +
  14. 'Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ' +
  15. 'ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere ' +
  16. 'SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd ' +
  17. 'TransformPoints Translate TrimCurve WorldBegin WorldEnd',
  18. illegal: '</',
  19. contains: [
  20. hljs.HASH_COMMENT_MODE,
  21. hljs.C_NUMBER_MODE,
  22. hljs.APOS_STRING_MODE,
  23. hljs.QUOTE_STRING_MODE
  24. ]
  25. };
  26. };