[runtime/docs] Add custom lexer for shell sessions in runtime wiki.

This was missing from the previous wiki related commit.

TBR=aam@google.com

Change-Id: Ib68ead3bab2841bb8e02cb93fd71bce7515ff335
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134285
Reviewed-by: Vyacheslav Egorov <vegorov@google.com>
This commit is contained in:
Vyacheslav Egorov
2020-02-04 09:16:52 +00:00
parent 857b911f3b
commit ab56c2f841
4 changed files with 76 additions and 2 deletions
@@ -0,0 +1,15 @@
#
# Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
#
from setuptools import setup, find_packages
setup(
name='custom-shell-session',
packages=find_packages(),
entry_points="""
[pygments.lexers]
custom-shell-session = custom_shell_session.lexer:CustomShellSessionLexer
""",
)