Application Development 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: 

ABAP Doc, auto close tags

volker_schropp
Explorer
0 Kudos

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

ThFiedler
Product and Topic Expert
Product and Topic Expert
0 Kudos

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

ThFiedler
Product and Topic Expert
Product and Topic Expert
0 Kudos

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.

schneidermic0
Advisor
Advisor
0 Kudos

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

0 Kudos

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

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