芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/accufy/docs/assets/vendor/highlight.js/languages/diff.js
/* Language: Diff Description: Unified and context diff Author: Vasily Polovnyov
Website: https://www.gnu.org/software/diffutils/ Category: common */ export default function(hljs) { return { name: 'Diff', aliases: ['patch'], contains: [ { className: 'meta', relevance: 10, variants: [ {begin: /^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/}, {begin: /^\*\*\* +\d+,\d+ +\*\*\*\*$/}, {begin: /^\-\-\- +\d+,\d+ +\-\-\-\-$/} ] }, { className: 'comment', variants: [ {begin: /Index: /, end: /$/}, {begin: /={3,}/, end: /$/}, {begin: /^\-{3}/, end: /$/}, {begin: /^\*{3} /, end: /$/}, {begin: /^\+{3}/, end: /$/}, {begin: /^\*{15}$/ } ] }, { className: 'addition', begin: '^\\+', end: '$' }, { className: 'deletion', begin: '^\\-', end: '$' }, { className: 'addition', begin: '^\\!', end: '$' } ] }; }