MS Word: Display code snippets, preserve format ✅ syntax highlighting

preview_player
Показать описание
Did I solve your problem in less than 1 minute? Then please help me out 🙌😊by subscribing to the channel and liking the video.

In the last video we learned how to display code snippets and create a specific snippet box style for them. In this video, you will learn how to display code, preserve its formatting and create a syntax highlighting.

#1minutesolutions
Рекомендации по теме
Комментарии
Автор

If this video helped you, you could do me an awesome favor and destroy that like button 😍🙌 Thanks a lot!

LeonRenner
Автор

Is it also possible to embrace the code line within the code snippet box without doing it manually?

fwiii
Автор

It doesn't work... It copies like this:





#include <stdio.h> int main() { float height = 1.75; float weight = 68.5; float bmi; // Body Mass Index = bmi printf("Your height is: %f \n", height); printf("Your weight is: %f \n", weight); bmi = weight / (height * weight); printf("Your Body Mass Index (BMI) is: %f\n", bmi); return 0; }




Not like this:


#include <stdio.h>
int main()
{
float height = 1.75;
float weight = 68.5;
float bmi; // Body Mass Index = bmi
printf("Your height is: %f \n", height);
printf("Your weight is: %f \n", weight);


bmi = weight / (height * weight);
printf("Your Body Mass Index (BMI) is: %f\n", bmi);




return 0;
}

AlicanDagdemir