Browse Source

syntax highlighting

Artur Paikin 9 năm trước cách đây
mục cha
commit
ca16d90618
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      ARCHITECTURE.md

+ 3 - 3
ARCHITECTURE.md

@@ -8,13 +8,13 @@
 
 ### Plugins
 1. We should be able to register a plugin with something like:
-```
+```javascript
   transloadit.plugin('dragndrop', function(options) {
     console.log('dragging and dropping here');
   });
 ```
 or:
-```
+```javascript
   transloadit.use(dragndrop, {
     selector: '.drop'
   });
@@ -22,7 +22,7 @@ or:
 2. ?
 
 ### Usage
-```
+```javascript
 import transloadit   from 'transloadit';
 import dragndrop     from 'transloadit-dragndrop';
 import dropbox'      from 'transloadit-dropbox';