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 4 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 = 'http://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
3 changes: 1 addition & 2 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 http://aka.ms/lu-file-format to learn about supported LU concepts.

# Why
- Why do you ask?
Expand Down
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 http://aka.ms/lu-file-format to learn about supported LU concepts.

## GetStarted
- Get started
Expand Down