Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP Doc, auto close tags

volker_schropp
Explorer
0 Likes
999

Hi community,

is there a short cut or function that closes automatically open tags like <strong>, for example like STRG+1?

Thanks.

1 ACCEPTED SOLUTION
Read only

ThFiedler
Product and Topic Expert
Product and Topic Expert
0 Likes
956

Hi Volker,

nice idea. Code Completion within ABAP Doc is definetly a feature we should support in AIE.

I will create a backlogitem for this.

Actually we are working on the sync between short texts and ABAP Doc and the generation of offline documentation based on ABAP Doc. When we have finished that we can improve the editing capabilities.

Regards,

Thomas.

PS: Maybe you can share some more experiences with ABAP Doc with the community.

Hi Volker,

nice idea. Code Completion within ABAP Doc is definetly a feature we should support in AIE.

I will create a backlogitem for this.

Actually we are working on the sync between short texts and ABAP Doc and the generation of offline documentation based on ABAP Doc. When we have finished that we can improve the editing capabilities.

Regards,

Thomas.

PS: Maybe you can share some more experiences with ABAP Doc with the community.

3 REPLIES 3
Read only

ThFiedler
Product and Topic Expert
Product and Topic Expert
0 Likes
957

Hi Volker,

nice idea. Code Completion within ABAP Doc is definetly a feature we should support in AIE.

I will create a backlogitem for this.

Actually we are working on the sync between short texts and ABAP Doc and the generation of offline documentation based on ABAP Doc. When we have finished that we can improve the editing capabilities.

Regards,

Thomas.

PS: Maybe you can share some more experiences with ABAP Doc with the community.

Read only

schneidermic0
Product and Topic Expert
Product and Topic Expert
0 Likes
956

Hi Volker,

a quick solution might be to create own code templates for tags you want to use in ABAP Doc.

E.g., you could create the following code template for the tag strong:

     <strong>${cursor}${word_selection}</strong>

Michael

P.S.: By using the variable ${word_selection} in the tempalte, also existing text can be surrounded by tags:

  1. Select some ABAP Doc
  2. Press Ctrl+Space
  3. Select the template
Read only

0 Likes
956

Hi Michael, thanks for the hint. I solved it with that generic template:

<${tag}>${word_selection}</${tag}>