Add other contributors section
diff --git a/src/main/site/data/contributors.yaml b/src/main/site/data/contributors.yaml
index e13d222..acb8a8d 100644
--- a/src/main/site/data/contributors.yaml
+++ b/src/main/site/data/contributors.yaml
@@ -172,4 +172,9 @@
     role: 
     email: "eric at centralparksoftware dot com"
     website: "[http://www.centralparksoftware.com/](http://www.centralparksoftware.com/)"
-    active: false     
\ No newline at end of file
+    active: false
+
+other:
+  - name: "jianingwang"
+    org: "Tencent's XuanWu Lab"
+    comment: "Finding and reporting XXE Vulnerability in Cayenne Modeler"
\ No newline at end of file
diff --git a/src/main/site/layouts/_default/contributors.html b/src/main/site/layouts/_default/contributors.html
index 7227f36..3119984 100644
--- a/src/main/site/layouts/_default/contributors.html
+++ b/src/main/site/layouts/_default/contributors.html
@@ -54,6 +54,29 @@
             </table>
         </div>
 
+        <h3 class="text-center">Other Contributors</h3>
+        <p class="text-center"></p>
+        <div class="table-responsive  mt-2 mb-5">
+            <table class="table table-bordered ">
+                <thead>
+                <tr>
+                    <th>Name</th>
+                    <th>Org</th>
+                    <th>Comment</th>
+                </tr>
+                </thead>
+                <tbody>
+                {{- range $.Site.Data.contributors.other -}}
+                <tr>
+                    <td>{{ .name }}</td>
+                    <td>{{ .org }}</td>
+                    <td>{{ if .comment }}{{ .comment | markdownify }}{{ end }}</td>
+                </tr>
+                {{- end -}}
+                </tbody>
+            </table>
+        </div>
+
     </section>
 </main>