Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Composer/packages/lib/code-editor/src/LuEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ import React from 'react';

import { RichEditor, RichEditorProps } from './RichEditor';

const LU_HELP =
'https://github.com/Microsoft/botbuilder-tools/blob/master/packages/Ludown/docs/lu-file-format.md#lu-file-format';
const placeholder = `>To learn more about the LU file format, read the documentation at
> ${LU_HELP}`;
const LU_HELP = 'https://aka.ms/lu-file-format';
const placeholder = `> See ${LU_HELP} to learn about supported LU concepts.`;

export function LuEditor(props: RichEditorProps) {
return <RichEditor placeholder={placeholder} helpURL={LU_HELP} {...props} />;
Expand Down
5 changes: 2 additions & 3 deletions SampleBots/Interrupt/GetProfile/GetProfile.lu
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
>To learn more about the LU file format, read the documentation at
> https://github.com/Microsoft/botbuilder-tools/blob/master/packages/Ludown/docs/lu-file-format.md#lu-file-format
> See https://aka.ms/lu-file-format to learn about supported LU concepts.

# Why
- Why do you ask?
Expand Down Expand Up @@ -43,4 +42,4 @@ $prebuilt : age Role=userAge
- What do you know about me?
- Show profile
- Show my profile
- What information do you have about me?
- What information do you have about me?
3 changes: 1 addition & 2 deletions SampleBots/Interrupt/Main/Main.lu
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
>To learn more about the LU file format, read the documentation at
> https://github.com/Microsoft/botbuilder-tools/blob/master/packages/Ludown/docs/lu-file-format.md#lu-file-format
> See https://aka.ms/lu-file-format to learn about supported LU concepts.

## GetStarted
- Get started
Expand Down